Jump to content

Jeyalakshmi

Members
  • Posts

    14
  • Joined

  • Last visited

Everything posted by Jeyalakshmi

  1. i cant understand that sub group and all could you please explain me more clearly
  2. <?php$string = "This is a test";echo str_replace(" is", " was", $string);echo ereg_replace("( )is", "\\1was", $string);echo ereg_replace("(( )is)", "\\2was", $string);?> output is :This was a testThis was a testThis was a testcan any one know how this has come
  3. do you want to validate that e mail form or simply you are creating email form. in html you didnt specify any form tag.check this link www.php.net this is the complete resource for phpwhat you going to do explain clearlythanks
  4. friends i got the output. problem while saving the file
  5. Jeyalakshmi

    new to php

    ok do you know any good book
  6. <?php$f=fopen('/home/ramkumar/Desktop/a.txt','r') or exit("unable to open the file");while (!feof($f)) { $x=fgetc($f); echo $x;}fclose($f);?>this is the program i am getting unable to open the file as an output . i tried using both absolute and relative path
  7. Jeyalakshmi

    new to php

    one more thing i saw a book in that classes and all they created using php. when shall we do like this.
  8. Jeyalakshmi

    new to php

    scott could u please tel me a simple situation i'll try to do that
  9. Jeyalakshmi

    new to php

    hi all i am new to php. could you please help me out to learn php
  10. thanks friend i got it. now i have one more doubt. is it possible to create a tool bar using the same thing
  11. is it possible to create menu using html or css
  12. i want to create my own toolbar using html.its urgent please help me out
×
×
  • Create New...