how to clean request string in php Get link Facebook X Pinterest Email Other Apps August 20, 2012 function cleanit($text) { return htmlentities(strip_tags(stripslashes($text)), ENT_COMPAT, “UTF-8″); } Get link Facebook X Pinterest Email Other Apps Comments
php email reader and notification though header parameters December 24, 2012 down vote accepted For the reading confirmations: You have to add the X-Confirm-Reading-To header. X - Confirm - Reading - To : <address> For delivery confirmations: You have to add the Disposition-Notification-To header. Read more
March 03, 2013 public void setName(String name) { this.name = name; } public String getPassword() { return password; } public void setPassword(String password) { this.password = password; } public String getPassword2() { return password2; } public void setPassword2(String password2) { this.password2 = password2; } Read more
Pyramid Program 4 August 10, 2012 Pyramid Program 4 Output ---------- 1 1 2 1 1 2 4 2 1 1 2 4 8 4 2 1 1 2 4 8 16 8 4 2 1 1 2 4 8 16 32 16 8 4 2 1 1 2 4 8 16 32 64 32 16 8 4 2 1 1 2 4 8 16 32 64 128 64 32 16 8 4 2 1 Pyramid Program 4 Source code ------------- package com.swain.cell; public class Piramid4 { public static void main(String args[]){ int i,k,j; for (i=1;i<=200;i= i*2){ for (j=1; j<=i; j=j*2) System. out .print(j + " " ); for (k=i/2; k>=1; k=k/2) System. out .print( k + " " ); System. out .... Read more
Comments
Post a Comment