Forum: PHP Dec 18th, 2007 |
| Replies: 17 Views: 1,777 You need to do a select query..
select * from table_name where column1="value1" and column2="value2" ...
The answers to these sort of questions are in php/mysql tutorials all over the internet. |
Forum: JavaScript / DHTML / AJAX Dec 17th, 2007 |
| Replies: 3 Views: 1,483 Hey Mate,
Using the mailto action isn't a good idea because it relies on the local e-mail software, which may not be set up correctly. There's no way to test for it either.
Using a server side... |
Forum: PHP Dec 17th, 2007 |
| Replies: 2 Views: 558 Hmm. These will work. (oh, and && should work btw.)
if($yo==5 && $test=="lala"){
echo "passed";
}
or |
Forum: PHP Dec 17th, 2007 |
| Replies: 3 Views: 1,649 AJAX is the answer. I've acheived similiar results in a few cruisey hours with the Yahoo User Interface libs. http://developer.yahoo.com/yui/connection/
The YUI libs are very stable/mature and... |
Forum: PHP Dec 17th, 2007 |
| Replies: 3 Views: 1,251 There's a query that does this for you .. :)
select * from tablename order by rand() limit 5 |
Forum: PHP Dec 16th, 2007 |
| Replies: 5 Views: 968 Try peeking inside the row result with something like this.
echo "<pre>\n";
print_f($this->result); // or whatever the result set var is called.
echo "</pre>\n"; |
Forum: PHP Dec 16th, 2007 |
| Replies: 3 Views: 724 For interests sake, what happens when you replace:
include"stdlib.php";
with
include "Page.php"; ?
Try transforming Page into lowercase as well.. |