Search results

  1. P

    pb search for a generator sitemap

    This sites very good for sitemap generator http://www.xml-sitemaps.com/ Starting URL Please enter the full http address for your site, only the links within the starting directory will be included. For instance, "domain.com" and "www.domain.com" are not the same. Change frequencyLast...
  2. P

    Making AJAX return a value.

    You will use this site http://phpasks.com/ajax/prototype_ajax.html Also Download this & understand it Asif Khalyani http://www.phpasks.com
  3. P

    PHP zip archive creation script

    Nobody user that help for you SUPHP solved this problem. http://phpasks.com/suphp/index.html http://phpasks.com/suphp/phpsuexec.pdf Asif Khalyani http://www.phpasks.com
  4. P

    PHP zip archive creation script

    php.ini enable ==> extension=php_zip.dll After that your work echo phpinfo(); Configur Command: './configure' '--enable-bcmath' '--enable-calendar' '--enable-dbase' '--enable-exif' '--enable-ftp' '--enable-gd-native-ttf' '--enable-libxml' '--enable-magic-quotes' '--enable-mbstring'...
  5. P

    Help creating php/msql update page!!!

    <?php include 'config.php'; include 'opendb.php'; mysql_select_db($dbname) or die(mysql_error()); $email = $_POST['email']; $password = $_POST['password']; $query = "select*from information where email='$email' and password='$password'"; $result = mysql_query($query); $user = ($result...
  6. P

    Bring Traffic to your site/forum. How you do it?

    You can create blog and article in other sites. blog ==> back link in your sites. article ==> back liink in your sites. These blogs and articles links put in Submit your website to many search engines. www.google.com/addurl/ submit.search.yahoo.com/ search.live.com/docs/submit.aspx Now...
  7. P

    JS slideshow help

    I suggest, When Different username menas another user image at that time you will submit page But same user Image display one by one very good Asif http://www.phpasks.com
  8. P

    How to Add a primary key in database table

    You can set http://www.phpasks.com/images/primramy.jpg Field = id Type= bigint length/values = 20 primery key = radio button seleted Asif http://www.phpasks.com
  9. P

    PHP Email, IP address

    You can store IP address in DB. When every time search how much image uploaded on that IP. Count sent to your mail message. Asif http://www.phpasks.com
  10. P

    hide extension

    You can write your .htaccess file <Files filename.php> order allow,deny deny from all </Files> or hide all files with ext: IndexIgnore *.php *.jpg or protect file: <Files "filename.php"> AuthType Basic AuthUserFile "/path/to/your/htpasswd/file/.htpasswd" AuthName "webFileBrowser" Require...
  11. P

    Help with file uploads!

    image uploading download code here.. http://phpasks.com/ajax/upload-image-ajax.html Asif http://www.phpasks.com
  12. P

    Bring Traffic to your site/forum. How you do it?

    Meta Tags ==> description, title and keyword Sitemap ==> sitemap.xml and rss feed Submit your website to many search engines. www.google.com/addurl/ submit.search.yahoo.com/ search.live.com/docs/submit.aspx any other search engine also. ----------------------- Submit Article in other...
  13. P

    Contact Form Error

    header("Location: http://keybladesephi.exofire.net"); /* Redirect browser */ exit; now try it Asif http://www.phpasks.com
  14. P

    mysql query question

    if(!isset($_GET['post'])){ header("Location:index.php?page=Result&error=".url encode("Post Not Found")); exit; } $result2 = mysql_query("UPDATE Posts SET NUM_COMS=NUM_COMS+1 WHERE POSTID='".$_GET['post']."'"); now try it.. Asif http://www.phpasks.com
  15. P

    How to get reference to all Form elements

    You can use prototype.js file Download prototype js file http://www.phpasks.com/ajax/prototype-framework.html <Script> function submit_username123_show(){ for(var i=0;i< $('form123').length;i++) { if($('form123')[i].type=='textbox' && $('form123')[i].value=='') {...
  16. P

    Need help with PHP script for ping monitoring for different location.

    hi woiwky, thanks buddy. Any other solution for that I have also this fourm answer http://forums.x10hosting.com/programming-help/63284-need-help-php-script-ip-address-sites.html Asif http://www.phpasks.com
  17. P

    Need help with PHP script for ping monitoring for different location.

    Please, any one help me. I need this php script very urgently. any clue thisike this: http://www.watchmouse.com/en/ping.php http://just-ping.com/ I need this type of output. Asif http://www.phpasks.com
  18. P

    Need help with PHP script for IP address of sites

    I need how much sites in that shared ip. ????? I am like this type of output. http://www.yougetsignal.com/tools/web-sites-on-web-server/ http://www.myipneighbors.com/ Any one knows then tell me how it's done php ? Asif http://www.phpasks.com
  19. P

    Autodownload in PHP?

    <?php $downloadurl = $path."/".$abspath . trim($filename); if (file_exists($downloadurl) && strlen($filename)!=0) { $size = filesize($downloadurl); header("Pragma: public"); header("Expires: 0"); header("Cache-Control: must-revalidate, post-check=0, pre-check=0")...
  20. P

    storing ip address of visitors

    <?php mysql_connect("localhost", "username", "password") or die ("Can't connect!"); mysql_select_db("db_name") or die("Can't select database!"); $ip=$_SERVER['REMOTE_ADDR']; //count is auto increament value - primary filed set mysql_query("INSERT INTO table (ipaddress) VALUES ('$ip')")...
Top