Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: amir4lamp
  • Order by date
  1. amir4lamp

    Is there a php function to download a file from the file system

    I have to download the file thats the final goal. The only reason why i have to copy and rename the file, is bcz the file name is encrypted, which does not make any sense to the end-user. and also bcz i want to keep the original encrypted copy of the file. and then will delete all the files...
  2. amir4lamp

    Is there a php function to download a file from the file system

    Is there a php function to download a file from the file system, NOT simply by using anchor. Because i have to first copy the file into a seperate folder then rename it and then download it. Thanks
  3. amir4lamp

    mysql and dates

    what version of mysql are you using???
  4. amir4lamp

    Web 2.0 with PHP/mySQL only?

    Regarding Web 2.0 check out this article from o'rielly: http://www.oreillynet.com/pub/a/oreilly/tim/news/2005/09/30/what-is-web-20.html
  5. amir4lamp

    Using NOT IN in a subquery

    I am using MySQL version 4.0.27-standard everytime i use "not in" in the subquery: select ci.cat_id, ci.cat_title from category_industry ci where ci.cat_id not in (select mc.cat_id from members_categories mc where mc.member_id = 1); it gives me an error message...
  6. amir4lamp

    PHP redirect won't work

    If you have a deadline and header location is not working, you can use HTML meta refresh which always works, anytime anywhere in the code, as follows: HTML version: <meta http-equiv="refresh" content="0;url=menu.php> PHP version (if you need to send data to another php file): echo '<meta...
  7. amir4lamp

    photo album

    Upload image file in php and save in mysql database CREATE TABLE test_pic ( name VARCHAR(30), email VARCHAR(30), phone VARCHAR(30), photo VARCHAR(30) ); -------------------------------------------------------------------------- add_pic.php, view_pic_data.php codes: add_pic.php...
  8. amir4lamp

    Where should I look for well oraganized documentation of sessions mgmt

    Hello, I have two questions: Where should I look for well oraganized documentation of session management on the net or books? My next question is, I have tried implementing sessions to secure page navigation using verstions of PHP, sometimes they work well, and sometimes they do not. So...

Part and Inventory Search

Back
Top