
12-25-2005, 11:28 AM
|
|
|
Join Date: Apr 2005
Posts: 3,972
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Letme know what needs changed and I can fix em up
|
- Design of the form:
- Two buffed up with extra words.
- The select field is narrower than the text fields.
- The controls should only show up when sticky is selected.
- Cron:
- Integer fields do not require to be wrapped into single quotes. Ex: Use sticky = 0 instead of sticky = '0'
- In MYSQL, you use <>, not !=. Therefore, use sticky_expiry <> 0 and not sticky_expiry != '0'
- ### is not a MySQL way to write comments. Therefore, there might be a MySQL error when running this query.
- [sql]DROP sticky_order,
DROP sticky_expiry[/sql]
I am not 100% sure, but I think it must be written like this:
[sql]DROP sticky_order, sticky_expiry[/sql]
If it works the way you have it, excellent 
- Same thing with quotes goes with your XML. You do not need to wrap numeric values into quotes. Although it doesn't matter much, it does affect speed.
|