Search results

  1. P

    foward mail to a php script

    You can send Mail no. of member. <?php $link = mysql_connect('mysql_host', 'mysql_user', 'mysql_password'); mysql_select_db('mysql_dbname', $link); $str_query = "select * from tablename limit 0, 10"; $recresult = mysql_query($str_query, $link); $i = 0; $counter = 1; while( $obj_row...
  2. P

    Store Procedure calling problem

    Please Help Me?? It's very urgent. Any one knows then reply me.
  3. P

    php Progress bar

    You can learn it Ajax & other script through Ajax Simple Example Download http://www.phpasks.com/ajax/simple_ajax.html Using Prototype js framework http://www.phpasks.com/ajax/prototype_ajax.html
  4. P

    Ajax with Php

    Ajax Simple Example Download http://www.phpasks.com/ajax/simple_ajax.html Using Prototype js framework http://www.phpasks.com/ajax/prototype_ajax.html
  5. P

    mysql_fetch_array() Error

    You have MYSQL 5 version & you have used mysql 4 function better way you can used mysql 5 database function <?php $mysqli = new mysqli("localhost", "my_user", "my_password", "world"); /* check connection */ if (mysqli_connect_errno()) { printf("Connect failed: %s\n"...
  6. P

    Store Procedure calling problem

    I have created below store procedure <?php BEGIN SET @sortfield = str_sortfield; SET @sortorder = str_sortorder; SET @min_limit = str_min_limit; SET @max_limit = str_max_limit; IF which_query_fired = '1' THEN SELECT count(*) as 'count' from bos_user_master...
  7. P

    Call to undefined function domxml_open_file()

    What means dating website -> Grandcruiser Edit: thanks for help, Great I have done to solve this problem.
  8. P

    Call to undefined function domxml_open_file()

    Originally Posted by phpasks I am trying to do the following in PHP 5.0.3 without success: Fatal error: Call to undefined function domxml_open_file() in D:\wwwroot\AdultXDating_New\admin\bos-user-access-permission.php on line 205 I will found it function domxml_open_file()...
  9. P

    Call to undefined function domxml_open_file()

    any budy know very urgently reply it.
  10. P

    Call to undefined function domxml_open_file()

    I am trying to do the following in PHP 5.0.3 without success: Fatal error: Call to undefined function domxml_open_file() in D:\wwwroot\AdultXDating_New\admin\bos-user-access-permission.php on line 205 I have enabled all DOM XML Related DOM/XML enabled DOM/XML API Version 20031129...
  11. P

    Multiple date & time support

    Thanks, Marshian regards, Asif
  12. P

    Multiple date & time support

    Can you give me any example for that code????
  13. P

    Multiple date & time support

    I will need multiple date & time support. if one user login in UK - then that's time UK time display. other one US then that's time US time zone display. another one AU then that's user AU time zone display. How it's handle using PHP......... Cheers Asif Khan http://www.phpasks.com
  14. P

    Help with Variable error in PHP

    You query here mysql_query("UPDATE players SET lastlogin='$lastlogin' WHERE id='$sessid' LIMIT 1" ) You can use below query try it mysql_query("UPDATE players SET lastlogin='$lastlogin' WHERE id='$sessid'" ) // Limit 1 is not in update query that's for error
  15. P

    AJAX Status Bar

    status bar means you have find menu bar ????
  16. P

    how to make an guestbook?

    You can download code above site code & some modification as per your requirements & nothing more...... cheers...
  17. P

    sql

    You can used this way CREATE TABLE `test` ( `id` int(11) NOT NULL auto_increment, `en1` enum('Y','N') default NULL, `field2` varchar(50) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  18. P

    how to make an guestbook?

    You can download guest book script in php http://www.hotscripts.com/PHP/Scripts_and_Programs/Guestbooks/index.html http://www.phpjunkyard.com/php-guestbook-script.php http://www.promosi-web.com/script/guestbook/
  19. P

    imagecreate errors

    First you will check your server level configuration. You have checked your server level GD library enble or not. May be your server level configuration changed.
Top