Search results

  1. P

    imagecreatefromjpeg() not working?

    You have checked your server level GD library enble or not. May be your server level configuration changed.
  2. P

    Help redirection

    one include block create for which site use if IN - Indian user than move to in.mysite.com IP through checking which country user. <?php /* This will give an error. Note the output * above, which is before the header() call */ if($ip_country!="India") header('Location...
  3. P

    how to execute php script with cron jobs ?

    /usr/local/bin/php -q /home/username/public_html/scripts/cron.php First PHP Path than -q than your file script path set. & time set when will run this script.
  4. P

    Connecting to MySQL in x10Hosting

    You can use for database ip where localhost then try it.
  5. P

    Form submition

    You can use this link through to get code. How submit form..... http://www.phpasks.com/ajax/submit_form_ajax.html
  6. P

    php image display

    Why can use view.php file using direct image path & source file name & display it. <?php echo "<img src=\Images\".file={$row_rsdef3['http://xxx.co.uk/Images/Horse1.jpg']}">";
  7. P

    Error headers with php.

    Why you can check in page using header? You can use .htaccess file This coding putting in your .htaccess file automatically page redirect ErrorDocument 404 404.shtml order deny,allow Also used other error page here. http://www.phpasks.com/htaccess/index.html#a_errorPage
  8. P

    MysQL Query for Master table & child table

    Without inner query, because inner query very heavy query. How much load for that inner query? Do u know?
  9. P

    MysQL Query for Master table & child table

    Thanks woiwky, But i know inner query using this solution. With out inner join possible or not.
  10. P

    MysQL Query for Master table & child table

    This is not right query. This out put is unique value but this value come in master table as well as same as child table. I have needed out put this way. Child table value come but not in master table this id used.
  11. P

    MysQL Query for Master table & child table

    I have two table One is master table & second is secondary table. Master Table CREATE TABLE `tbltest` ( `test_id` int(5) NOT NULL auto_increment, `name` varchar(50) NOT NULL default '', `lname` varchar(50) NOT NULL default '', PRIMARY KEY (`test_id`) ) INSERT INTO `tbltest`...
  12. P

    PHP Stream Web Page Content

    Actually What does done? I don't understand. If your problem only After login & before login than you can use session variable. When login member at that time you will set session & solved your problem. ob_start(); session_start(); $_SESSION["username"] = 'xyz'...
  13. P

    please explain

    You can create .htaccess file using below link http://www.phpasks.com/htaccess/ http://www.phpasks.com/articles/htaccesstricksandtips.htmlhttp://www.phpasks.com/articles/advancedphperrorhandlingviahtaccess.htmlhttp://www.phpasks.com/articles/howtoenablephperrorloggingviahtaccess.html How it's...
  14. P

    HTML + JS in PHP

    You can used all js, css, meta tag into your head portion head tag start & close between user can put css, js file & meta tag & also favicon icon also. Body part display for your borwser <html> <head> <!- here put your js, css, favicon icon, meta tag --> </head> <body> <!- Display here layout...
  15. P

    Ajax Basics

    You can start simple ajax for below link http://www.phpasks.com/ajax/simple_ajax.html Or better way prototype js framework http://www.phpasks.com/ajax/prototype_ajax.html see how to work prototype js framework http://www.phpasks.com/ajax/prototype-framework.html...
  16. P

    best PHPmailer available?

    One of the good phpmailer example below http://phpmailer.codeworxtech.com/ You can download tutorial for phpmailer. http://www.askapache.com/php/phpfreaks-eric-rosebrocks-phpmailer-tutorial.html
  17. P

    difference between max_connection and max_user_connection

    Your guessing is right. But i also know this but Max_connection is see this link = 25 http://dev.mysql.com/doc/refman/5.0/en/server-system-variables.html#option_mysqld_max_connections The number of simultaneous client connections allowed. Max_user_connection = 500...
  18. P

    difference between max_connection and max_user_connection

    Are there any difference between max_connection and max_user_connection? please help me. That's problem my server very slow.
Top