[PHP] Re: Table duplication

2005-03-12 Thread Jules Winnfield
Marquez Design wrote: I am trying to display information in an html table from a MySQL data base. I can do this rather easily, however, I am trying to multiply that table with as many entries there are in the database. Can someone point me in the right direction or give me an example of how I can

[PHP] Re: usage of php script tags

2005-03-08 Thread Jules Winnfield
Jochem Maas wrote: I sure I'm not the only one on this list that reads php-internals after reading the thread entitled: I'm wondering if anyone here has _ever_ used the script tags to enclose php code? e.g.: script language=php echo testing 123; /script or if many were even aware of the

[PHP] PHP 5 and Implicit cloning

2004-07-22 Thread Jules
in the PHP4 manner. Any help would be great, Thanks, Jules... -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: PHP 5 and Implicit cloning

2004-07-22 Thread Jules
Jason, I need it for other reasons. This is not a new application that is causing this. It was built on PHP 4 and therefore has lots of non PHP 5 elements. So I'm pretty sure I need than on, unless someone has another idea... Thanks, Jules... Jason Barnett [EMAIL PROTECTED] wrote in message

[PHP] Re: adding *** on email address upon view

2004-07-22 Thread Jules
Use eregi_replace to match the text between the @ and the . and replace it with the text you want. You'll have to use pattern matching which can be tricky, but its more than possible. Jules... http://nl.php.net/manual/en/function.eregi-replace.php Louie Miranda [EMAIL PROTECTED] wrote