Forum: PHP Mar 3rd, 2009 |
| Replies: 8 Views: 1,506 Well since this is a PHP forum, i'll give you a PHP solution. You could pass the css file for the iframe to use in the url like so:
<iframe id="pframe" width="'.$game['iframewidth'].'"... |
Forum: PHP Feb 26th, 2009 |
| Replies: 10 Views: 1,101 Try looking at this page (http://hudzilla.org/phpwiki/index.php?title=Advanced_text_searching). |
Forum: PHP Feb 11th, 2009 |
| Replies: 24 Views: 955 <td width=""><p><?php echo wordwrap($message, 75, "<br />", true); ?></p></td> Change 75 to whatever width you want. |
Forum: PHP Feb 2nd, 2009 |
| Replies: 9 Views: 428 Put this:
if (!$user_check) {
die('Invalid query: ' . mysql_error());
}
in between this:
$user_check = mysql_query("SELECT userdb_user_name FROM default_userdb WHERE... |