Forum: PHP Apr 12th, 2007 |
| Replies: 4 Views: 2,017 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,199 To remove a directory:
rmdir('directory_name'); |
Forum: Existing Scripts Mar 16th, 2005 |
| Replies: 11 Views: 11,396 I would use Google Adsense for Search (https://www.google.com/adsense/ws-overview). It has a site search feature. |
Forum: PHP Mar 4th, 2005 |
| Replies: 6 Views: 40,349 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;");... |