Forum: MySQL Jun 3rd, 2005 |
| Replies: 1 Views: 18,024 Hi,
How can I delete from multiple tables?
I'm using this query and its not working:
"DELETE FROM table1,table2 WHERE
$localTime > table1.Time OR $localTime > table2.Time";
What I hope to... |
Forum: PHP Nov 20th, 2004 |
| Replies: 1 Views: 2,422 Hi,
I'm looking for some advice regarding creating a well-designed database site.
The scenario is this:
I have a main database that holds all my users' data,
I'll call it UserData.
Now I want to... |
Forum: PHP Nov 9th, 2004 |
| Replies: 3 Views: 2,850 Hey thanks for the replies.
I figured out whats wrong. The reason is I already executed the drawRow()
function in an earlier php code.
Then in the table, I echo the drawRow() function again.... |
Forum: PHP Nov 6th, 2004 |
| Replies: 3 Views: 2,850 Hi,
I'm trying to create some rows in a table using php code.
Its like this:
<table border="1" cellspacing="0" cellpadding="0">
<tr>
<td width>some item</td>
</tr>
<?php
echo... |
Forum: PHP Oct 30th, 2004 |
| Replies: 7 Views: 4,562 Hey, maybe I replied too fast. Just found out something.
When I used the AUTO_INCREMENT feature, the value just keeps adding,
even after I delete a row.
For example, i have:
1
2
3
4 |
Forum: PHP Oct 30th, 2004 |
| Replies: 7 Views: 4,562 Thanks fpepito.
Didnt know there's this thing called AUTO_INCREMENT.
It works the way I want now. |
Forum: PHP Oct 29th, 2004 |
| Replies: 7 Views: 4,562 Hi,
I'm trying to connect to a database using MySQL. Very new at this.
I already have an existing table consisting of 2 rows created using phpMyAdmin.
The problem (not exactly) I'm facing is when... |