User Name Password Register
DaniWeb IT Discussion Community
All
What is DaniWeb IT Discussion Community?
DaniWeb is a massive community of 392,242 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 2,882 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Showing results 1 to 40 of 107
Search took 0.01 seconds.
Posts Made By: ryy705
Forum: PHP 19 Hours Ago
Replies: 0
Views: 36
Posted By ryy705
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
Posted By ryy705
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
Posted By ryy705
Re: POP3 help

*bump*
Forum: PHP 25 Days Ago
Replies: 1
Views: 102
Posted By ryy705
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
Posted By ryy705
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
Posted By ryy705
How can I declare an array as class variable?

Hello,

How can I declare an array as a class variable? For example I can do:

<?php
class test {

private $name = 'john';

public function getName() {
Forum: PHP Jun 27th, 2008
Replies: 3
Views: 349
Posted By ryy705
Re: How to use fsockopen

So it would only work on the local host then?

Is there way to connect remotely?
Forum: PHP Jun 26th, 2008
Replies: 3
Views: 349
Posted By ryy705
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
Posted By ryy705
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
Posted By ryy705
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
Posted By ryy705
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
Posted By ryy705
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
Posted By ryy705
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
Posted By ryy705
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
Posted By ryy705
Forum: PHP Jun 1st, 2008
Replies: 4
Views: 254
Posted By ryy705
Re: Should I echo out password value in the password field?

Daniweb's registration is a good example. If you fill in all the fields and enter in a wrong entry for the image verification field, all the inputs will be echoed out except for the password field...
Forum: PHP Jun 1st, 2008
Replies: 4
Views: 254
Posted By ryy705
Should I echo out password value in the password field?

Hello,
I noticed that on some forms the password is not echoed after the user submits the form and the page reloads(this could because of errors or any other reasons). Why is this? Is there a valid...
Forum: PHP May 30th, 2008
Replies: 16
Views: 641
Posted By ryy705
Re: Where should I save credit card data?

Is it safe to assume that all servers will use port 443 for ssl? (guess I need to learn about ports as well)
Forum: PHP May 29th, 2008
Replies: 16
Views: 641
Posted By ryy705
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
Posted By ryy705
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
Posted By ryy705
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
Posted By ryy705
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
Posted By ryy705
Re: Credit card validation

I plan on having a "name as it appears on the card" field just for extra security.
Forum: PHP May 28th, 2008
Replies: 6
Views: 229
Posted By ryy705
Re: Credit card validation

Yes. Is there a way to do this?
Forum: PHP May 28th, 2008
Replies: 6
Views: 229
Posted By ryy705
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
Posted By ryy705
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
Posted By ryy705
Re: How to get rid of frames

Thanks. its working.
Forum: PHP May 26th, 2008
Replies: 5
Views: 458
Posted By ryy705
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
Posted By ryy705
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
Posted By ryy705
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
Posted By ryy705
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
Posted By ryy705
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
Posted By ryy705
Re: How much data can a post variable hold?

Thanks for your reply. Is there a way to verify max post memory size? I there a way to reset it if I ever need to?
Forum: PHP May 11th, 2008
Replies: 3
Views: 266
Posted By ryy705
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
Posted By ryy705
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
Posted By ryy705
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
Posted By ryy705
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
Posted By ryy705
Re: Email server on a personal computer

How do I this in apache2?
Forum: PHP Apr 16th, 2008
Replies: 3
Views: 277
Posted By ryy705
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
Posted By ryy705
Showing results 1 to 40 of 107

 
All times are GMT -4. The time now is 6:07 pm.
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC