Forum: PHP Jun 21st, 2006 |
| Replies: 2 Views: 5,525 |
Forum: PHP Jun 20th, 2006 |
| Replies: 2 Views: 5,525 I'm trying to use the following script to test password strength:
<?
switch($_REQUEST['req']){
case "change_password":
function CheckPasswordStrength($password)
{
... |
Forum: PHP Apr 24th, 2006 |
| Replies: 6 Views: 1,975 I'm trying to make a script to return the next 5 days for example today is 2006-04-24 and it would create variables with the values of 2006-04-25, 2006-04-26, 2006-04-27, 2006-04-28, 2006-04-29. I... |
Forum: PHP Dec 15th, 2005 |
| Replies: 1 Views: 4,706 Hi I've been trying to make pagination for my search results and I have this problem: The first page displays ok but when the max result per page is achieved like $max_results = 2 and it reached 2... |
Forum: PHP Dec 14th, 2005 |
| Replies: 2 Views: 7,809 Hi I'm tying to get php to calculate someone's age from that person's birthday, for example 1985-04-11 the age would be 20 anyone can tell me how I could do that? Thanks! |
Forum: PHP Nov 28th, 2005 |
| Replies: 1 Views: 1,444 I'm doing an code the would list events entered by people and it's sorted by date, what I want it to do though is to list out only those who's starting dates haven't passed yet. How should I build... |
Forum: PHP Nov 18th, 2005 |
| Replies: 10 Views: 3,725 thanks Ether! I'll try that, I know my reply is late but I haven't been here for a while :p |
Forum: PHP Nov 10th, 2005 |
| Replies: 5 Views: 13,143 Thanks a lot! I'll go try it |
Forum: PHP Nov 10th, 2005 |
| Replies: 14 Views: 3,139 Another way to do that is
//default index page if your loading all your pages to the index
if(!$_GET['page'] {
include 'home.html'
}
if ($_GET['page'] == page1) {
include 'page1.html';
} |
Forum: PHP Nov 10th, 2005 |
| Replies: 5 Views: 13,143 I named the fields as you suggested and everything went on beautifully up until the script pull out the data from the form to submit. I checked the data from the arrays created the id comes out ok... |
Forum: PHP Nov 9th, 2005 |
| Replies: 5 Views: 13,143 hi I'm trying to find a way to create a dynamic form from mysql database and update multiple rows from it.
For example let's say I have a database with email and the owner's name. How do I build... |
Forum: PHP Sep 9th, 2005 |
| Replies: 10 Views: 3,725 I tried the code with the modifications, but now it's only working when it's one word search, when I put two words it gives me this warning:
Warning: mysql_num_rows(): supplied argument is not a... |
Forum: PHP Sep 7th, 2005 |
| Replies: 10 Views: 3,725 If possible could I see the search part of the script from your site?
Sorry for the trouble and thanks! |
Forum: PHP Sep 7th, 2005 |
| Replies: 10 Views: 3,725 I tested out that code further but I found that I have a little problem, when I type in one search word it doesn't return anything and when I enter two it looks for the first one more than two it's... |
Forum: PHP Sep 6th, 2005 |
| Replies: 10 Views: 3,725 Thx a lot! The code works :) |
Forum: PHP Sep 6th, 2005 |
| Replies: 10 Views: 3,725 Hi I am developping a search script for my site and I'm stuck at one part. The script I did works fine but it looks for exact matches within the fields. For example if I type "John Smith" it would... |
Forum: PHP Aug 8th, 2005 |
| Replies: 2 Views: 1,638 Hi people,
I have been trying to develop a database searching PHP script and encountered some problem. The problem is that whatever I type in as the keyword the script would return me all the... |