Jump to content

cyrixware

Members
  • Posts

    171
  • Joined

  • Last visited

    Never

Everything posted by cyrixware

  1. I just wanna know if thers a way on how to delete the images inside of the folder from my directory. Using browse then click delete. thanks
  2. i learned a lot. kissing and dating.. hehehehehehe watching movie every week-end and playing badminton every Sunday morning... lol :)
  3. the quality of the product and brand comes first for me...
  4. you said that your gooD in C and C++.. PHP is like C or C++... All you have to do is research and study more for you to know more about web develpment....
  5. hello im interested in this. i search so many tutorials here but i cant see the tutorial codes in making a simple forum. can you pls post your codes. thanks
  6. hehehe.. you cannot display images in this source code: <img src="<?php echo $row_Recordset6['Name']; ?>"> wildteen88 is correct. And Recordset6 use for displaying the values or the data in a certain field of your dbase.. :)
  7. usually back end is hard.. but front end is hard too.  hehehehe lol
  8. nope.. i prefer macromedia dreamweaver.. hehehehehehe
  9. mango is the best of all!.. hehehehe
  10. Im Frederick 21, from Philippines. started using php last year. started programming when i was 17 now im 21.
  11. map image using dreamweaver is very easy.. (links)
  12. both javascript and php can do that re directing to the other site.
  13. open it using dreamweaver.. you can edit that using codes easily...
  14. Option 2 is much more easier than the other 1.
  15. yep if you want to learn more about this you can do that easily especially you have a knowledge already. cheers, Frederick
  16. using php and other webpage aplication can create your system. using php you can store your datas' as well as retrive and browse it through the browser.
  17. (image database) try this link: http://www.spoono.com/php/tutorials/tutorial.php?id=42
  18. ok thats what you mean. after browsing the images it will stored automatically on the dbase or folder when the user click upload. as what ive said in your directory you created 2 folders namely thumbs and images. upload.php <?php $filesize = $_FILES['userfile']['size']; $filetype = $_FILES['userfile']['type']; $nameuse = filename; IF (($filesize <= 102000) AND ($filetype == 'image/pjpeg') OR ($filetype == 'image/jpeg')) { $nameuse = $_FILES['userfile']['name']; //$nameuse = gmdate("YmdHis"); // In PHP versions earlier than 4.1.0, $HTTP_POST_FILES should be used instead // of $_FILES. $uploaddir = 'your_directory\images\'; $uploadfile = $uploaddir . $nameuse; echo '<pre>'; if (move_uploaded_file($_FILES['userfile']['tmp_name'], $uploadfile)) { echo "File is valid, and was successfully uploaded.\n"; } else { echo "Possible file upload attack!"; } } IF (($filetype != 'image/pjpeg') AND ($filetype != 'image/jpeg')) { echo "Your Image is the wrong file type, it must be a jpg image<BR>your image is $filetype"; } IF ($filesize > 102000) { echo "Your Image is to large to upload"; } ?> <form method="POST" enctype="multipart/form-data" action="upload.php"> <p> <input type="file" name="userfile" size="20"> <input type="submit" value="Submit" name="B1"><input type="reset" value="Reset" name="B2"> </p> </form> Then add the script of thumbs.php indside of this codes. put a link or re-direct the user to the gallery.html after uploading the images.
  19. i dont know how to delete the images in both folders at the same time.. pls help em.. thanks Folders: 1. IMAGES: pic.jpg 2. THUMB : pic.jpg Im going to browse the image after that if im going to click delete the images pic.jpg in folder IMAGES and THUMBS deleted automatically. How can i do that?
  20. I see. well in my case i use xampp control 2.1 and thers no problem in my part. maybe, i guess thers a problem in the configuration of your server...
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.