On Sat, Aug 8, 2009 at 10:43 PM, aishwarya . <[email protected]>wrote:
> 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? you could use string concatenation operator . (dot) instead of function. syntax : $string = $string_1 . $string_2; short hand notation $word .= $character; note : use php.net for function reference and php command line interface for testing code snippet. > > > > > -- Thanks Sivaji _______________________________________________ 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
