Forum: PHP Dec 24th, 2008 |
| Replies: 5 Views: 406 ok I'll have to take a look at this later, but it's possible that you might be able to fix this by making a few small changes to your script. for example I suggest that you use <?php for all of your... |
Forum: PHP Dec 24th, 2008 |
| Replies: 5 Views: 406 please post your code, so we can see what you are doing |
Forum: PHP Dec 24th, 2008 |
| Replies: 3 Views: 1,218 |
Forum: PHP Dec 24th, 2008 |
| Replies: 3 Views: 1,218 OK this usually happens when the root user or password for mysql was changed. your other pages can connect to mysql because nothing happened to the other mysql users. the user is usually root and... |
Forum: PHP Dec 22nd, 2008 |
| Replies: 3 Views: 684 you could always password protect the directory they are stored in, that way if someone finds out where they are they will need a password. you should be able to put a password on the directory from... |
Forum: PHP Dec 21st, 2008 |
| Replies: 2 Views: 2,870 ok its better if you assign a variable to each $_POST and use the variable in the insert query like so.
//example
$FileID = $_POST['FileID'];
$FileAddress = $_POST['FileAddress'];
$Name =... |
Forum: PHP Dec 20th, 2008 |
| Replies: 4 Views: 1,449 it much easier just to use php
<?php
//this is just an example
if(empty($_POST['N'])){
$message = 'Please fill in your Name';
}
if($message){ |
Forum: PHP Dec 20th, 2008 |
| Replies: 3 Views: 684 ok found this on another forum. you might be able to work with it. you can also do a surch for (hide download url php script)
<?php
// Usage: <a... |
Forum: PHP Dec 17th, 2008 |
| Replies: 4 Views: 846 you might want to use an if statement to compare whatever day today is to the string Friday.
for example
$friday = 'Friday';
if(date(l) == $friday){
//drop down boxes, menus or other code... |
Forum: PHP Dec 13th, 2008 |
| Replies: 2 Views: 415 you need to be more specific. where's your code. |
Forum: PHP Dec 13th, 2008 |
| Replies: 3 Views: 459 please explain in more detail. What do you want the script to do. what kind of directory. |