Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
~10K People Reached
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 Davife

I have a jQuery form in which I create a series of checkboxes: <?php <form method="post" id="b-form" action="../createb.php"> for ($i=0; $i<$request_count; $i++){ <div class="request-check"> <table> <tr> <td><input type="checkbox" name="show_request[]" value="request".$i." checked="checked"/>select request</td> </tr> </table> </div> } javascript $.ajax({ type: 'POST', url: '../createb.php', data: $('#b-form').serialize(), success: function (msg){ alert(msg); } }) …

Member Avatar for Davife
0
6K
Member Avatar for Davife

In a strange turn of events my browsers (neither IE nor Firefox) cannot connect to the Internet on my laptop. It is a hard wire connection to the router and is able to connect to other computers on my home network and access external servers thru Remote Desktop Connection. Also …

Member Avatar for Davife
0
242
Member Avatar for Davife

I have a site which maintains a local message database and addressbook. What I would like to do is the following: When a user contacts another user a record of that message is stored in the message database and an email is also sent to that user. Any response to …

Member Avatar for digital-ether
0
112
Member Avatar for Davife

As part of data entry I am checking the validity of a date field and using the onchange event to trigger the check. As you will note it also compares start and end dates, but that's not the issue. The issue is that after a bad date is detected and …

Member Avatar for Davife
0
105
Member Avatar for Davife

I'd like to trap mysql warnings and log them as part of my debugging process. However mySQL warnings just print to screen. I'd appreciate if someone knows how trap warnings along with whatever other information is available and prevent users from seeing the warning. Thanks. David

Member Avatar for NettSite
0
108
Member Avatar for Davife

I have created a javascript file with some utility functions. How do I "include" to those functions from another javascript file? Also if I create a global variable inside one of my javascript files, can the utility functions see that variable if they are called?

Member Avatar for Davife
0
113