Saturday 08 August 2009 22:43 को, aishwarya . ने लिखा था: > In php, > if i have to append some characters to a word, > for eg: if i want to conver "aish" to "aishwarya" what string function is > to be used?
Very simple. There is no need to use any function. You can use dot(.) operator to append more characters to a word like below: $old="aish"; $new=$old."warya"; echo $new; // It will display "aishwarya" -- Best Regards ... Pankaj Kumar http://www.glug4muz.org > > > > > Thanks, > Aishwarya.M.B > _______________________________________________ > To unsubscribe, email [email protected] with > "unsubscribe <password> <address>" > in the subject or body of the message. > http://www.ae.iitm.ac.in/mailman/listinfo/ilugc _______________________________________________ To unsubscribe, email [email protected] with "unsubscribe <password> <address>" in the subject or body of the message. http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
