Forum: PHP 2 Days Ago |
| Replies: 1 Views: 89 Re: browser detect You should have a look on the PHP site:
http://us3.php.net/function.get-browser
http://uk.php.net/manual/en/reserved.variables.server.php |
Forum: PHP 9 Days Ago |
| Replies: 1 Views: 78 |
Forum: PHP 11 Days Ago |
| Replies: 1 Views: 90 Re: simple problem once the user & pass is validated in window b, use javascript to close (B) and refresh window(A).
Window a then has a script to check the user credentials again and then uses the php header()... |
Forum: PHP 11 Days Ago |
| Replies: 1 Views: 89 |
Forum: PHP 11 Days Ago |
| Replies: 4 Views: 134 Re: Help: Multiple user levels code I would suggest you purchase a book on PHP. An excellent book is PHP and MySQL for Dynamic Web Sites :
http://www.amazon.com/PHP-MySQL-Dynamic-Web-Sites/dp/0321336577
It gives you all the basics you... |
Forum: PHP 11 Days Ago |
| Replies: 3 Views: 136 |
Forum: PHP 11 Days Ago |
| Replies: 9 Views: 193 |
Forum: PHP 11 Days Ago |
| Replies: 7 Views: 210 Re: hello all I've tried this code myself and I can definately connect.
<?php
$name = 'emailaddress@gmail.com';
$pwd = 'password';
$mailbox = '{imap.googlemail.com:993/imap/ssl}';
$mbox = imap_open... |
Forum: PHP 13 Days Ago |
| Replies: 10 Views: 326 |
Forum: PHP 14 Days Ago |
| Replies: 10 Views: 326 |
Forum: PHP 16 Days Ago |
| Replies: 7 Views: 210 Re: hello all Did you check if the IMAP function had been enabled in GMail? |
Forum: PHP 16 Days Ago |
| Replies: 10 Views: 326 |
Forum: MySQL 16 Days Ago |
| Replies: 2 Views: 216 |
Forum: JavaScript / DHTML / AJAX 16 Days Ago |
| Replies: 5 Views: 582 Re: Need Javascript calendar?? The jquery UI project has an amazing Javascript based calender that you can use.
You can get it here:
http://dev.jquery.com/view/trunk/ui/demos/ui.datepicker.html
Regards,
Alex |
Forum: PHP 16 Days Ago |
| Replies: 7 Views: 216 |
Forum: PHP 16 Days Ago |
| Replies: 7 Views: 210 Re: hello all Also, when I connect to googlemail via IMAP I have used Port 993 using the following connection string:
$mbox_open = imap_open ("{imap.googlemail.com:993/imap/ssl}[Google Mail]/Sent Mail",... |
Forum: PHP 16 Days Ago |
| Replies: 7 Views: 210 Re: hello all Have you ensured the IMAP connections are allowed within your gmail account?
Go to gmail.com and check you account settings to ensure it's allowed.
Regards,
Alex |
Forum: PHP 16 Days Ago |
| Replies: 2 Views: 150 |
Forum: PHP 16 Days Ago |
| Replies: 10 Views: 326 |
Forum: PHP 19 Days Ago |
| Replies: 1 Views: 141 Re: Parse error help... You need to escape the " characters in your <a href=""> string. Or change the print function to
print '
<b>Vote here on each of these sites to help Ruins of Sera. Each one of your votes gives you... |
Forum: PHP 19 Days Ago |
| Replies: 7 Views: 183 Re: mysql_numrows not working?? I think it's because when the row return's zero then php thinks it's an error so it runs the die() function.
I always write my scripts like the one I showed you and I never have a problem.
Please... |
Forum: PHP 20 Days Ago |
| Replies: 7 Views: 183 Re: mysql_numrows not working?? It may be producing an error because there are no rows.
You might be better to write the script as:
$email_rows = mysql_num_rows($check_email_sql);
if($email_rows>0){
echo $email_rows;
}else... |
Forum: PHP 23 Days Ago |
| Replies: 4 Views: 239 Re: SMTP mail without php.ini You can use the php_flag option in a .htaccess file.
This is only if the server allows this option.
Do a google search on php_flag |
Forum: PHP 23 Days Ago |
| Replies: 1 Views: 101 |
Forum: PHP 23 Days Ago |
| Replies: 2 Views: 85 |
Forum: PHP 27 Days Ago |
| Replies: 2 Views: 310 |
Forum: PHP 29 Days Ago |
| Replies: 6 Views: 478 |
Forum: HTML and CSS 29 Days Ago |
| Replies: 5 Views: 205 Re: Which development software ? You could use
SeaMonkey
http://www.seamonkey-project.org/
The SeaMonkey project is a community effort to develop the SeaMonkey all-in-one internet application suite. Such a software suite was... |
Forum: PHP 29 Days Ago |
| Replies: 4 Views: 168 |
Forum: PHP 29 Days Ago |
| Replies: 1 Views: 167 |
Forum: HTML and CSS 29 Days Ago |
| Replies: 5 Views: 205 Re: Which development software ? It all depends what you want.
If you need a WYSIWYG editor then Dreamweaver can be one of the best. You could try typing in free wysiwyg editors in to google?
Personally, I use Dreamweaver CS3 but... |
Forum: JavaScript / DHTML / AJAX 30 Days Ago |
| Replies: 6 Views: 425 |
Forum: PHP 30 Days Ago |
| Replies: 3 Views: 351 |
Forum: PHP 32 Days Ago |
| Replies: 4 Views: 228 Re: Selectbox selected Use a hidden text field named submitted and the value as true.
Then before your mysql populates the drop-down write
<option value="'.$value.'">'.$value.'</option>
$value being the value which... |
Forum: PHP 32 Days Ago |
| Replies: 3 Views: 95 |
Forum: PHP 32 Days Ago |
| Replies: 3 Views: 95 |
Forum: PHP 32 Days Ago |
| Replies: 5 Views: 167 |
Forum: PHP 32 Days Ago |
| Replies: 5 Views: 323 Re: PHP and MS SQL Secure Authentication system Ok - no problem.
Say you have your login page called login.php - this page will contain a form with the username & password fields along with a button that send the users to page called... |
Forum: PHP 33 Days Ago |
| Replies: 3 Views: 160 |