Jump to content

ammu412

New Members
  • Posts

    9
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

ammu412's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. ammu412

    Regards RPM

    Hi friends, I'm new to linux. I have installed xmms player using RPM like rpm -qa xmms-status-plugin-0.9-1.i386.rpm . Sucessfully installation has finished. But I don't know how i can run that in my system.Kindly help me............
  2. Hi sKunKbad, Can i give $_SERVER['HTTP_USER_AGENT'] instead of WhateverBrowser1.45.
  3. Hi friends, <?php ini_set("display_errors",1); error_reporting(E_ALL); $url = "http://www.yahoo.com"; $curl = curl_init($url); echo $curl; curl_setopt($curl, CURLOPT_HEADER, FALSE); curl_setopt($curl, CURLOPT_RETURNTRANSFER, TRUE); curl_setopt($curl, CURLOPT_FOLLOWLOCATION, TRUE); curl_setopt($curl, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']); $source = curl_exec($curl); curl_close ($curl); echo $source; ?> In the above code, i didn't get anything as output. In php ini: CURL support enabled CURL Information libcurl/7.15.1 OpenSSL/0.9.8a zlib/1.2.3 libidn/0.6.2 Help me to solve this problem.............
  4. hi, Php variable does not suport "-". But in your program u have added - in ic-passport_no. Change the variable to ic_passport_no.But we can use _ in variable name.
  5. Hi friend, I'm working in Linux system....... So no need to use SMTP server. It'll use sendmail only know.......
  6. program is <?php if(mail("[email protected]","Subject","Message")){ echo "mail send"; } else{ echo "no"; } ?> after excuting this file i'm getting "mail send". But mail not yet go. Also i checked the php.ini it's also fine. php.ini settings: sendmail_from no value no value sendmail_path /usr/sbin/sendmail -t -i /usr/sbin/sendmail -t -i SMTP localhost localhost smtp_port 25 25
×
×
  • 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.