642 Topics

Member Avatar for
Member Avatar for Davife

I've created an HTML email which has a link back to my website. It works fine in every mail client that I've tested except Yahoo mail. Yahoo mail adds rel="nofollow" and deletes the href link. For examplE: <a style="text-decoration:none;font-size:16px;color:#0000CC;" href="www.xyz.com" target="_blank">Visit Us</a> is replaced with <a rel="nofollow" style="text-decoration:none;font-size:16px;color:#0000CC;">Visit Us</a> Consequently, …

Member Avatar for Duane_3
0
3K
Member Avatar for samantela123
Member Avatar for wackyal

how do you extract all email addresses from a string and put each extracted email address as an element of a simple array? <?php // define and implement your php function here function get_all_emails($text_field) { // ---- Beginning of Green Section --- // create an empty array $emails = array(); …

Member Avatar for Dani
0
3K
Member Avatar for afan21
Member Avatar for Richard Dickson
Member Avatar for Software_5
Member Avatar for Mannan_3

Hi guys, this is my first post on the forum and I am in need of some help. I am a PHP beginner and I have been trying to come up with a solution to my issue for a while now. I am trying to make a system where a …

Member Avatar for rproffitt
0
555
Member Avatar for cliffcc

How to create submit button on each row ? If i press the button on that row, the information on that row will be confirmed. What is the problem? [CODE] ;<input name="<?php echo $row['id']; ?>" type="submit" id="<?php echo $row['id']; ?>" value="Confrim">&[/CODE] The whole code [CODE] <?php $host="localhost"; // Host name …

Member Avatar for Kimanzi
0
18K
Member Avatar for ronjacob012

I want to create a webpage which will automatically send an email before 2 days. <form action="try.php" method="post"> <p>Date From : <input type="date" name="date1" /></p> <p>Date To: <input type="date" name="date2" /></p> <input type="submit" name="submit" value="Submit" /> </form> <?php // echo("First name: " . $_POST['firstname'] . "<br />\n"); echo("Last name: " …

Member Avatar for monika_12
0
14K
Member Avatar for wilsonjoee

Internet has changed many aspects of our life, and the change is very positive. It has more or less you can say revolutionized the whole world. Nowadays Email Marketing is very popular and cost effective medium. Here are some tips for effective email marketing which would your business to success …

Member Avatar for pogeken216
0
371
Member Avatar for Dani

I'm using the following code to verify that an email address has a valid DNS (otherwise, we consider the email invalid). $domain = substr($email, strrpos($email, '@') + 1); $isValid = checkdnsrr($domain, 'MX') || checkdnsrr($domain, 'A'); However, today it just flagged nearly all @gmail.com and @yahoo.com emails as invalid. Obviously the …

Member Avatar for serverjedi
0
884
Member Avatar for larry29936

The validation section of my contact.php page is sending the user back to my index.php instead of staying on the contacts.php page so the user can correct the reported error. How can I fix this? My contact.php code follows: <?php if(isset($_POST['submit'])) { $name = $_POST['name']; $visitor_email = $_POST['email']; $message = …

Member Avatar for Dani
0
673
Member Avatar for Muslim_1

Hi all, I am doing web services for an Android application which sends push notification. Below is the scenario: 1. I have 100s of customers registered on the website 2. Each user has his own subscribers list 3. Each user can schedule the push notification to be sent at a …

Member Avatar for hello_5
0
304
Member Avatar for Jashandeep
Member Avatar for nikitacod
0
475
Member Avatar for LloydFarrell

Hi all, this is my first post and would appreciate some insight as to where im going wrong. I have the following form that successfully registers a new user to my mysqsl database via PHP - with the following $sql INSERT Function The problem im having is sending the activation …

Member Avatar for sbaset
0
14K
Member Avatar for John_74

<?php $con = mysqli_connect("localhost","root","","register"); if (!$con) { die(' connection error: ' . mysql_error()); } $name=$_POST['name']; $fname=$_POST['fname']; $dob=$_POST['dob']; $address=$_POST['address']; $ph_no=$_POST['ph_no']; $email=$_POST['email']; $zip=$_POST['zip']; $phd_marks=$_POST['phd_marks']; $ph_out=$_POST['ph_out']; $ph_study=$_POST['ph_study']; $ms_marks=$_POST['ms_marks']; $ms_out=$_POST['ms_out']; $ms_study=$_POST['ms_study']; $ma_marks=$_POST['ma_marks']; $ma_out=$_POST['ma_out']; $ma_study=$_POST['ma_study']; $ba_marks=$_POST['ba_marks']; $ba_out=$_POST['ba_out']; $ba_study=$_POST['ba_study']; $fa_marks=$_POST['fa_marks']; $fa_out=$_POST['fa_out']; $fa_study=$_POST['fa_study']; $matric=$_POST['matric']; $matric_out=$_POST['matric_out']; $matric_study=$_POST['matric_study']; $exp=$_POST['exp']; $experience=$_POST['experience']; mysqli_select_db("register", $con); $sql="INSERT INTO cv (name, fname, dob, address, …

Member Avatar for pritaeas
0
16K
Member Avatar for rproffitt

Long Title: "Here are some top topics recommended just for you" email recommends a thread deleted two months ago. "what are the feature of window 10" was in my email and that looks to have been removed two months ago. As a moderator I can get to it but is …

Member Avatar for Dani
2
1K
Member Avatar for SpottyBlue

Hi, Is there a PHP script that doesn't allow the approver to be the same as the login e-mail? > $checkEmail = test_input($_POST["Approved_by_Email"]); > if (filter_var($checkEmail == session('session_staff_email'))) { > alert("Please do not use your e-mail as the approver."); > return false; > } I tried to solve the problem, …

Member Avatar for Dani
0
390
Member Avatar for brommer66

Hello everybody I am new here and hope to find an answer to my computer problem. I am Dutch, live in Germany and work with compuers for quite a while (home and work) I have a big problem with my USB keyboerd that stopped working after a restart some days …

Member Avatar for PRCx
-2
11K
Member Avatar for fredfletcher

I realize that this question has been asked many times, but I've yet to find a flatfile version. I'm looking for a way to achieve this: **Scenario:** A person submits their email address via a form. The email is then stored in flatfile database (.txt) The person then gets an …

Member Avatar for Ole Bjørn
0
3K
Member Avatar for TheoDeed

Recently Thunderbird asked me to login again for Gmail. It presents me a form in which I have to insert the password. It is the same form as when I login to my Google account via my browser. Only the NEXT button does not work. Do you have an idea …

Member Avatar for John_202
0
633
Member Avatar for tscina

I have a php script which requires phpmailer and I got it to work already but I need to send the email to 3000 persons. How do I do that? I've tried searching over the net but all the examples show only to enumerate the emails addresses. Mine comes from …

Member Avatar for navjot_2
0
3K
Member Avatar for kkjaykamau

I have this email code from a website template that I want to use for my site. The problem is that when I click on the "Send message" button, the form simply refreshes and nothing is sent. If there is any text data in the fields, it simply disappears. I …

Member Avatar for Schol-R-LEA
0
3K
Member Avatar for Dillon_4

I am trying to recieve my form email in a more organized html table format. I get the email in code form. How can i get it translated? <?php $howDidYouHear = $_POST['howDidYouHear']; $weddingDate = $_POST['weddingDate']; $weddingTime = $_POST['weddingTime']; $ceremonyLocation = $_POST['ceremonyLocation']; $receptionLocation = $_POST['receptionLocation']; $additionalLocation = $_POST['additionalLocation']; $guests = $_POST['guests']; …

Member Avatar for ryantroop
0
576
Member Avatar for troverman

This is puzzling. We have a small organization running our own Exchange 2003 server for about 25 users. We hired a new employee recently, and I created a new user in Active Directory by copying an existing account, same as I have done for over 10 years. That all went …

Member Avatar for troverman
0
415
Member Avatar for Var_1

I want to attach two excel files (sealing_production.xls & sealing_assembly.xls)to my email using php,but I have no idea on how to do it. **Problem** When I click on my send mail button, I gets the mail. with all details. but attachment is not working. **Try** I echo the file name, …

Member Avatar for cereal
0
2K
Member Avatar for Ankur_8

This is the error Warning: mail(): Failed to connect to mailserver at "localhost" port 25, verify your "SMTP" and "smtp_port" setting in php.ini or use ini_set()

Member Avatar for Dani
0
332
Member Avatar for Ankur_8
Member Avatar for diafol
0
874
Member Avatar for Fahmi_1

After outlook rebooting my password has failed. What have happened and what should i do ih this case...Any advice please!

Member Avatar for rproffitt
0
269
Member Avatar for kuminac
Member Avatar for rubberman
0
327

The End.