Jump to content

dearmoawiz

Members
  • Posts

    24
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

dearmoawiz's Achievements

Member

Member (2/5)

0

Reputation

  1. hi guyz hows u all ? can any body tell me the complete criteria of upload a php site or tell me any links from where i get the complete information of uploading a php site. thnxx
  2. this way is not suitable for me bcoz my requirements are bit different then this one i just want to calculate the differete b/w days and month like 12/04 and 14/05 got it ?
  3. hi guyz .. hwz u all i need ur help here is the scenario........ i hav today date with date function n i have another date which is save in database like 09/05/2008 (today date) and 12/04/2008 (date from database) now i want to calculate the difference b/w these 2 dates in the form of days then how i calculate that plz help me wizzz!!!!
  4. ya m using Apache server so from where i can increase the default file size ???
  5. hi guyz howz u all can any body tell me how i upload files more than 5 to 10 mb in php thnxxx in advance wiz
  6. hi guyz howz u all can any body tell me how to upload video and audio files in php ... the file size is in b/w 4 to 10 mb ?? i am waiting for u guys kind response Enjoy !! wizzz
  7. i need to resize the image being saved on server ... infact the real scenario is that i wanna build a photo album in php so there if i upload images i want that they resized in equal size and then saved on server ... so tht the real scenario did u got my point???
  8. hi guyzz howz u all i wanna start ajax in php so can any body tell me from where i get the initial help for ajax which will be helpfull for me to getting good start... Enjoy!!! wizzz
  9. hi guys hwz u all .... can any body tell me how we resize an image in php ?? need urget response enjoy !!!! wizzz
  10. i also done it with that way but again result same ... let me paste code again if($_FILES["res"]["error"]>0) { echo "Error: ". $_FILES["res"]["error"]; } else { if(file_exists("references/". $_FILES["res"]["name"])) { echo "File already Exists "; } else { move_uploaded_file($_FILES["res"]["tmp_name"],"references/". $_FILES["res"]["name"]); } } here the out is File Already Exists ... but wen i check the folder then there is no file in that folder n if i upload any new file than also message is same
  11. hi guyzzzz howz u all i using following code for file uploading but wen i run it the message is that file already exists so can any body tell me wats problem ? my file input field name is res !!! waiting i debug it n i found the error that it didnt take any value in $_FILES["res"]["name"] this variable so plzz guide why it happening ... if($_FILES["res"]["error"]>0) { echo "Error: ". $_FILES["res"]["error"]; } else { if(!file_exists("references/". $_FILES["res"]["name"])) { echo "File already Exists "; } else { move_uploaded_file($_FILES["res"]["tmp_name"],"references/". $_FILES["res"]["name"]); } }
  12. here is the solution $row = mysql_fetch_array($result); echo $row['categories_name']; thnxxx for my self
×
×
  • 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.