Forum: PHP 19 Hours Ago |
| Replies: 0 Views: 36 How can I create a new email account? Hello,
Is there a way to create new email accounts using php? There must be right? Many sites will give you a mailbox as soon as you register.
How do they do it? |
Forum: PHP 1 Day Ago |
| Replies: 0 Views: 37 How can I redirect emails Hello,
I need to give different people different email addresses of my site. For example, advice(at)mysite.com, support(at)mysite.com, author(at)mysite.com, etc.
But I would like for all the... |
Forum: PHP 24 Days Ago |
| Replies: 1 Views: 102 |
Forum: PHP 25 Days Ago |
| Replies: 1 Views: 102 POP3 help Hello,
I am experimenting with sockets and pop3.
I am trying to to connect to gmail with the following code. But it prints an empty string as a response. Should it not print out 200 OK? Could... |
Forum: PHP 28 Days Ago |
| Replies: 2 Views: 195 How use the bcc field Hello,
In a spam message I always see my own email address in the to: field. How do they do that?
They must use the bcc: field to send out the emails. So why do I see my own email address in the... |
Forum: PHP Jul 16th, 2008 |
| Replies: 1 Views: 451 |
Forum: PHP Jun 27th, 2008 |
| Replies: 3 Views: 349 |
Forum: PHP Jun 26th, 2008 |
| Replies: 3 Views: 349 How to use fsockopen Hello,
Running the following code returns FALSE.
$server = "smtp.gmail.com";
fsockopen('tcp://' . $server, 587);
I know those are correct server address and port because I have ssmtp installed on my... |
Forum: PHP Jun 10th, 2008 |
| Replies: 4 Views: 455 Re: How to configure GD The code you posted executed without errors. Yes, I am using linux.
Here is the line that throws the error. $textbox = imagettfbbox($font_size, 0, 'monofont.ttf', $code) or die('Error in imagettfbbox... |
Forum: PHP Jun 10th, 2008 |
| Replies: 4 Views: 455 Re: How to configure GD Thanks for your reply. Using absolute path did not help. As I mentioned in the previous post, the code works fine when I upload it to a server. But it doesn't work on my computer. |
Forum: PHP Jun 9th, 2008 |
| Replies: 4 Views: 455 How to configure GD Hello,
I call the imagettfbbox function like so imagettfbbox($font_size, 0, 'monofont.ttf', $code) but its generating the following error: 'imagettfbbox() [function.imagettfbbox]: Could not find/open... |
Forum: PHP Jun 3rd, 2008 |
| Replies: 4 Views: 385 Re: How to return a mysql result set <?php
include('connection.php');
$query = "select field from table where field='f1'";
echo mysql_query($query);
echo query($query);
?>
This code returns resouce id #7 for the first command and 1 for... |
Forum: PHP Jun 3rd, 2008 |
| Replies: 4 Views: 385 How to return a mysql result set Hello,
mysq_query($query) returns a valid result set. However,
function query($query)
{
return mysql_query($query);
}
returns a 1. Why does this happen? Is there a way around it? Thanks in... |
Forum: HTML and CSS Jun 2nd, 2008 |
| Replies: 2 Views: 622 How to make a grid-like form Hello,
Is there a way to create a grid-like form with CSS? Meaning, I would like the label and input fields to be equidistant from one another. It naturally happens if I use tables but is there a... |
Forum: PHP Jun 1st, 2008 |
| Replies: 4 Views: 254 |
Forum: PHP Jun 1st, 2008 |
| Replies: 4 Views: 254 |
Forum: PHP May 30th, 2008 |
| Replies: 16 Views: 641 |
Forum: PHP May 29th, 2008 |
| Replies: 16 Views: 641 Re: Where should I save credit card data? Thanks. Everything is still in the design phase right now so there isn't any link. Is there a way to use the .htaccess file for specific pages and not the entire site? |
Forum: PHP May 29th, 2008 |
| Replies: 16 Views: 641 Re: Where should I save credit card data? ssl is already installed. But how do I use it? Do I have to do any thing with my php code?
Or do I just use a .htaccess file.
Sorry if I am asking stupid questions. No one in my team has built a... |
Forum: PHP May 29th, 2008 |
| Replies: 16 Views: 641 Re: Where should I save credit card data? Thanks for all your replies. hivenk: Please elaborate. Do want me to create a hidden in the user form and fill it with random data? And check it when the form is submitted?
What do I have to do as... |
Forum: PHP May 29th, 2008 |
| Replies: 16 Views: 641 Where should I save credit card data? Hello,
Is it okay to save credit card data in the database. I know it will be password protected but still, it will be a disaster if someone ever hacks in. How do real world companies(mine is... |
Forum: PHP May 28th, 2008 |
| Replies: 6 Views: 229 |
Forum: PHP May 28th, 2008 |
| Replies: 6 Views: 229 |
Forum: PHP May 28th, 2008 |
| Replies: 6 Views: 229 Re: Credit card validation Thanks for the reply. However, the tutorial doesn't really validate the credit card. I could just follow the algorithm and make up my own credit card number. How can I verify that its an authentic... |
Forum: PHP May 27th, 2008 |
| Replies: 6 Views: 229 Credit card validation Hello,
Is there a way to verify the validity of a credit card when user submits in his/her credit card number? Many thanks in advance. |
Forum: PHP May 26th, 2008 |
| Replies: 5 Views: 458 |
Forum: PHP May 26th, 2008 |
| Replies: 5 Views: 458 Re: How to get rid of frames Please elaborate. I was always told that frames are evil, so I never used them before. I googled parent='_top' and its my understanding that it has to be placed inside an anchor tag. But I want... |
Forum: PHP May 26th, 2008 |
| Replies: 5 Views: 458 How to get rid of frames Hello,
I have a page consisting of two frames. The top frame holds instructions, the bottom frame holds a form. I need the top frame to disappear after the form is submitted. Could someone kindly... |
Forum: PHP May 22nd, 2008 |
| Replies: 3 Views: 254 How to get a domain name Hello,
I am trying to get my own(paid) website. But I am not sure about what steps I should take. I understand that signing up with a hosting company will get me storage and scripting... |
Forum: PHP May 22nd, 2008 |
| Replies: 1 Views: 155 How to use $$ variables Hello,
The following is a code excerpt I found on the web. Could someone please tell me where I can find information about how to use $$ variables and ${$var} variables. I have never seen them... |
Forum: PHP May 13th, 2008 |
| Replies: 1 Views: 172 Help with regular expression please Hello,
Given a string like <form method="post" action="xyz.com"> I have to change it to <form method="post" action="myurl.com">. Could someone help me with this please?
I think its something like... |
Forum: PHP May 11th, 2008 |
| Replies: 3 Views: 266 |
Forum: PHP May 11th, 2008 |
| Replies: 3 Views: 266 How much data can a post variable hold? Hello,
I am collecting data from users on one form, altering the data, and then depending on which option the users (user will choose a submit button out of many) selects I will be passing the data... |
Forum: PHP Apr 24th, 2008 |
| Replies: 4 Views: 823 Re: SMTP mail without php.ini Thanks for all your responses. My goal is to write websites which are portable. Unfortunately some server don't allow the flag option and few horrible servers don't allow telnet access. Swiftmail... |
Forum: PHP Apr 23rd, 2008 |
| Replies: 4 Views: 823 SMTP mail without php.ini Hello,
Is there a way to send smtp mail without messing with php.ini file? A lot of server don't seem to give access to that. Thanks in advance. |
Forum: PHP Apr 18th, 2008 |
| Replies: 3 Views: 277 Re: Email server on a personal computer I found many examples of setting up the php.ini file to send mails using external mail servers like gmail and such but they are all for windows machines. I can't find a single example for a linux... |
Forum: PHP Apr 17th, 2008 |
| Replies: 3 Views: 277 |
Forum: PHP Apr 16th, 2008 |
| Replies: 3 Views: 277 Email server on a personal computer Hello,
Is there a way to install an email server on a personal computer? I don't need a fully functional email server with all the bells and whistles. I just want to build my website on my personal... |
Forum: JavaScript / DHTML / AJAX Mar 21st, 2008 |
| Replies: 3 Views: 754 |