Jump to content

sanjay_zed

Members
  • Posts

    30
  • Joined

  • Last visited

    Never

Everything posted by sanjay_zed

  1. hello guys. pls help me on this. i have configured SMTP and php mailer. it is working absolutely fine in my local machine but while i deployed into server. it is throwing error as Language string failed to load: tls could you pls tell how to solve this issue.
  2. Hi guys..can you pls give some suggestions or share API so that it would be useful for me . actually in my website i want to pull all my facebook friend's email and want to send email to all of them to join my website. i tried by using some API..It is providing only first name and last name . i am not getting email id.. pls help...!!!!!!!!
  3. i have one table called ptl_temp_DEPMAS . there is one column named LEDCOD..the values for this column would be savings account as DPO1, recurring account as DP02, fixed account as DP03.. i need to run a query such a way that the result of query needs to be displayed in drop down box as accountno-accounttype example: 1 savings account 2 savings account 3 recurring account 10 fixed account guys this is my requirement..i am not getting how to write query and put condition. WHAT I TRIED IS $SQL=select DEPNUB from ptl_temp_DEPMAS where MEMNUB='123'. HERE i can able to retrieve account no i.e DEPNUB . I NEED TO CONCATENATE "LEDCOD" along with this not as it is stored in database e.g DP01...I NEED TO DISPLAY AS SAVINGS BANK..
  4. I 'm having some problem while sending mails . i am sending bulk mails using php script, der is no problem in the script. i hope some guys have faced similar issue. while i am sending bulk emails, i figured out that - few mails are going to spam not into their INBOX. can you guys pls give some hint to resolve this issue. ..
  5. those temp tables are dynamically created tables, the no . of temp tables will be increasing. ...
  6. actually i have one master table, and a few dynamically created temp tables. i will be uploading excel sheet containing email ids, while inserting my records into my master table, i need to trigger all the dynamically created temp tables. so that it will be inserted into my all temp tables at one instance.. can u provide me few links and examples of trigger and how can i achieve this.
  7. $sql="SELECT * FROM email_list "; $res= mysql_query($sql); $temparray=array(); while($row=mysql_fetch_assoc($res)) { array_push($temparray,$row["email"]); } $totalmail=count($temparray); for($ii=0;$ii<$totalmail;$ii++){ $email = $temparray[$ii]; $contents=""; $contents=" <a href='http://www.example.com/bulkEmail/thankyou.php?email=".$email."'>click here to join</a> <br/> "; } $headers = 'MIME-Version: 1.0' . "\r\n"; $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n"; $headers .= 'From: sanjay <sanjay@kumar.com>'."\r\n"; echo $Recipiant = $temparray[$ii]; mail("$Recipiant",'sanjay bulk email testing',$contents,$headers,'-fsupport@calcipe.com'); } this is the above code i am using.
  8. u need to pass the value in <option> like <option value="<?php echo $AMall['campaignid']; ?>"> <?php echo $AMall['name']; ?></option>
  9. i will be sending mails to users more than one . i need to track who has clicked on that mail. so i am passing the user's email id along with body. if that script is stored in database. i couldnt able to retreive email id.
  10. i am sending a mail to user (user's email is stored in $email) in body i have written code $message =" <a href='http://www.example.com/thankyou.php?email=".$email."'>click here to join</a> "; now i need this content to be stored in database and has to be retreived and append it to body like $message =$body_from_db; if i check it in mail. the corresponding value of $email is not coming . pls help guys.
  11. thank you for giving solutions. can i make it in front end , so dat users can have the option to do it. ???
  12. hello guys. i need to run a script automatically at scheduled date and time. i am sending bulk emails . i need to setup an email campaign, in such a way that i can schedule like daily, monthly or quarterly.. can u guys give few tips to get it done..
  13. before executing parse it. $sql="select * from person"; $s = oci_parse($connectdb->conn,$sql); if (!$s) { $m = oci_error($c); trigger_error('Could not parse statement: '. $m['message'], E_USER_ERROR); } $r = oci_execute($s); if (!$r) { $m = oci_error($s); trigger_error('Could not execute statement: '. $m['message'], E_USER_ERROR); }
  14. first make sure that php_oci8 is enabled. define('SCHEMA', 'system'); define('PASSWORD', 'yourpassword'); define('DATABASE', 'localhost/XE'); define('CHARSET', 'UTF8'); class connect_database { public $conn = ''; public function __construct() { $this->conn = @oci_connect(SCHEMA, PASSWORD, DATABASE, CHARSET); if (!$this->conn) { $m = oci_error(); throw new \Exception('Cannot connect to database: ' . $m['message']); } } } global $connectdb; $connectdb = new connect_database();
  15. thanks for the replies. actually i want to track the no of emails sent successfully.
  16. i am sending bulk email using SMTP . Now i can able to check in my mailbox sent items , whether is email is sent successfully or not. my query is how can i retreive in my PHP script, whether it is successfully delivered.????? How many bounced back and note those email id, mark them in database as obsolete so that next time we run the campaign, we don't pick up those emails. ?? Is there a way to figure how many went to SPAM? i tried to get it done by setting some server settings as safe mode ON. it didnt work. i hope someone has worked on it. pls help guys....
  17. hello guys.. i want help from u . i am displaying a table of 5 rows and 5 columns . i want to get a pdf copy of it dynamically. i want to re-use it again for my invoice also . covert in into pdf and then print that file. can u provide a sample code of how to covert it into pdf . (same as exporting into excel)
  18. problem solved..in iframe , i have property as padding-left:20px..if i remove it, no white bar issue.
  19. I’m kind of stuck here ...i really cant understand why this white band is displaying. there is no problem of same thing in firefox and chrome. in these page, i am displaying three seperate iframes for images,videos and audios..in ie8, only image iframe is displaying, really cant understand why rest of it is not displaying. in chrome and firefox , all three iframes are displaying. i have attached the screenshot of it Any ideas to solve this mystery?! I’m kind of hopeless here… Thanks for reading .pls help guys...
  20. hello guys, i need a help from u. from past 1 week , i am searching for it. may be it is simple query for you . in my project, i am uploading a file, for example 5mb of audio file, while uploading i need to display a progress bar along with percentage of how much it is uploaded to server ( as it works in google chrome browser). i tried several codes by searching in google . No code is working. i can able to display only loader.gif image not the status bar with percentage. so pls guys if you have these codes, pls share it .
  21. hello guys pls help me out . i need a javascript or jquery to restrict future date while selecting date of birth in registration page in my project , as this would provide my good quality of my website. the selection should not cross today's date ,month and year. i would b thankful , if u provide. me..
  22. i have table called location_state , the fields are stateid and statename. for example : i have inserted the statename as karnataka. in my search module, if i try to search this record with "KARNATAKA " . it is not displaying the above record. i hav used query as select * from location_state where state_name like '%KARNATAKA%'; THE Query is working fine if i write like ---select * from location_state where state_name like '%karnataka%'; how would i search if an user is typing in uppercase letter while searching. pls help guys....
  23. $sql2="select * from gs_customer_registration,gs_deposits_trans where gs_deposits_trans.customer_id='$a' and gs_deposits_trans.deposited_date not like '%-$current_month-%'"; it is displaying all the month except the current month.. I want the customer name who hav not deposited in this current month. i am not getting the proper condition to check on it.
  24. i tried using join also . but while checking condition am failing to do.
  25. i hav some prob while fetching the records. i hav three tables namely jewellers, gs_customer_registration,gs_deposits_trans For one jeweller , he is having ' n' no of customers, dat customer is depositing money each month (this record is storing in table customerdeposit) . Now my query is --I need to fetch the customer name which is not paid for current month. while doing am able to do, but is displaying all the months except the current month. $jid=$_SESSION["user_id"]; $current_month= date("m"); $sql="SELECT * FROM gs_customer_registration where jew_id='$jid'"; $result=mysql_query($sql); $rec=mysql_fetch_assoc($result); $a=$rec['customer_id']; $sql1="select * from gs_customer_registration,gs_deposits_trans where gs_deposits_trans.customer_id='$a' "; $sql2="select * from gs_customer_registration,gs_deposits_trans where gs_deposits_trans.customer_id='$a' and gs_deposits_trans.deposited_date not like '%-$current_month-%'";
×
×
  • 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.