112 Posted Topics
hi guys, i already have a working upload.php, now the problem is that the file cannot accept pdf files? but other than that, it works very well, what do you think should i do with this? [code] echo"<form enctype='multipart/form-data' action='fileRecs.php' method='POST'>"; echo "<input type='hidden' name='MAX_FILE_SIZE' value =1000000/>"; echo "Choose a … | |
i want to access the information of my uploaded file in php, let's say that i have Document1.doc, i want to edit its information, let's say the time it was uploaded, its filename and like that, not necessarily the file itself. thanks in advance... ![]() | |
hi guys, i have my upload.php, now the problem is that it does not download pdf files, it says that there is a problem with regards to the uploading. can you help me??? thanks in advance... | |
i can already the upload and download files, the thing is that i want to access the folder "uploads" because all the uploaded files are in here, the thing is that when i'm using this one, it works when the uploaded files are merged with my php files, the problem … | |
hi guys, just wanna know, how could i download a file using php script? it is possible with visual basic 6 but the problem is how would i do that using php??? | |
this is what i want to happen, the user uploads the file to the database, (i already have the upload file), now what i want is that the user will be able to download what he had just uploaded to the database. in this case, he will have a chance … | |
Re: you should have two files, one is for acquring data, the other one is for posting the data, please refer to this\ [url]http://www.w3schools.com/php/php_get.asp[/url] [url]http://www.w3schools.com/php/php_post.asp[/url] ![]() | |
hi guys, need help, the fopen () command does not run on my program, i don't think what's the problem, please help me [code] <?php $ourFileName = "C:\server\htdocs\samples\php\sample.txt"; $fh = fopen($ourFileName, 'r') or die("Can't open file"); fclose($fh); ?> [/code] | |
how could i run my php code using joomla? i've tried it embedding in the articles and it runs, however, i have buttons in my page and it executes a certain command, now what i want to do is that i have my separate php program and it is just … | |
Re: here, try this sample... ********this is your index.php [code=html]<form action="welcome.php" method="post"> Name: <input type="text" name="fname" /> Age: <input type="text" name="age" /> <input type="submit" /> </form> [/code] *******this one's your welcome.php [code=php]Welcome <?php echo $_POST["fname"]; ?>!<br /> You are <?php echo $_POST["age"]; ?> years old. </form>[/code] | |
Re: what programming language are you using? because it depends upon the platform you are using. let's say for example you are using Microsoft VIsual Basic 6.0, you just have to connect your database to your program.. | |
Re: you can do that in three files *add file, *delete file, and you could also put that in a single one but it is complicated. the delete file should contain the delete statements, of course you should have the selection process wherein your user will select first what record he … |
The End.