[PHP-DB] String manipulation

2009-09-10 Thread Ron Piggott
How would I put a space after each letter: echo str_shuffle(stripslashes(mysql_result($word_result,0,"word")); Ron

Re: [PHP-DB] PHP output in the mySQL table

2009-09-10 Thread Chris
Ron Piggott wrote: I am wondering if I can put PHP into a mySQL table. When I tried doing: echo stripslashes(mysql_result($article_titles_result,0,"article")); The PHP coding displays, not "rendered" PHP. You'd need to 'eval' it (http://www.php.net/eval), though be very careful as any php

[PHP-DB] PHP output in the mySQL table

2009-09-10 Thread Ron Piggott
I am wondering if I can put PHP into a mySQL table. When I tried doing: echo stripslashes(mysql_result($article_titles_result,0,"article")); The PHP coding displays, not "rendered" PHP. Any suggestions? Ron