112 Posted Topics

Member Avatar for xuexue

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 …

Member Avatar for xuexue
0
79
Member Avatar for xuexue

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...

Member Avatar for diafol
0
97
Member Avatar for xuexue

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...

Member Avatar for xuexue
0
1K
Member Avatar for xuexue

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 …

0
86
Member Avatar for xuexue

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???

Member Avatar for xuexue
0
125
Member Avatar for xuexue

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 …

Member Avatar for xuexue
0
104
Member Avatar for mahakaal

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]

Member Avatar for diafol
0
88
Member Avatar for xuexue

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]

Member Avatar for ranjeetp
0
63
Member Avatar for xuexue

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 …

Member Avatar for kvprajapati
0
92
Member Avatar for arajapandi

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]

Member Avatar for arajapandi
0
154
Member Avatar for redear

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..

Member Avatar for redear
0
77
Member Avatar for gagan22

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 …

Member Avatar for guru12
0
142

The End.