Forum: PHP Apr 12th, 2007 |
| Replies: 4 Views: 2,009 Are you sure the query is returning results? Are the results an array?
print_r($sqlProject); so you know the query looks lik you think it should. Try running that query in phpMyAdmin and see what... |
Forum: PHP Apr 4th, 2005 |
| Replies: 6 Views: 13,111 To remove a directory:
rmdir('directory_name'); |
Forum: PHP Mar 4th, 2005 |
| Replies: 6 Views: 39,788 The simplest way is to have php write the info you want into the page as javascript, for ex:
<script type="text/javascript" language="javascript">
<!--
<?php
echo("firstVar = $var1;");... |