Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 25 of 27
Search took 0.09 seconds.
Search: Posts Made By: duforudesign
Forum: Paid work offers and requests (Now CLOSED) 04-05-2005, 11:40 PM
Replies: 9
Views: 1,706
Posted By duforudesign
Thumbs up I sent you an email new2this I do believe that I...

I sent you an email new2this I do believe that I can help you out here.
Forum: PHP 03-30-2005, 05:37 PM
Replies: 13
Views: 1,161
Posted By duforudesign
Thumbs up www.kazix.com has a solid package for $40 / yr. I...

www.kazix.com has a solid package for $40 / yr. I have used them for a couple years now until recently when we took a leap into hosting.

$72 /yr. through us.

2500 MB Hosting
40 GB Transfer /...
Forum: PHP 03-30-2005, 05:29 PM
Replies: 6
Views: 813
Posted By duforudesign
Thumbs up I use both methods depending on which is better...

I use both methods depending on which is better suited for the given situation. Typically I like to keep HTML and PHP isolated and will commonly pull an external HTML file into any formatting scripts.
Forum: PHP 03-30-2005, 05:26 PM
Replies: 5
Views: 891
Posted By duforudesign
Thumbs up I use code similar to what Ultragames has posted....

I use code similar to what Ultragames has posted. Works great! I do not recommend the later example as it depends on the id fields being concurrent which most likely will not be the case. I...
Forum: Paid work offers and requests (Now CLOSED) 03-23-2005, 12:37 PM
Replies: 6
Views: 1,551
Posted By duforudesign
Thumbs up Just sent you an email chucky. I believe I can...

Just sent you an email chucky. I believe I can help but need to know a bit more about the file(s) to be parsed.
Forum: Paid work offers and requests (Now CLOSED) 03-23-2005, 12:34 PM
Replies: 5
Views: 1,388
Posted By duforudesign
Thumbs up So how exactly are you planning on making money...

So how exactly are you planning on making money off of this website? If you have a more detailed plan I am interested in looking at it. We might be able to help you out.

info@duforu.com or...
Forum: Paid work offers and requests (Now CLOSED) 03-23-2005, 12:32 PM
Replies: 6
Views: 2,997
Posted By duforudesign
Thumbs up Drop me a line, I may be able to help. ...

Drop me a line, I may be able to help.

http://www.duforu.com/contact_us.php

or

info@duforu.com
Forum: PHP 03-21-2005, 05:33 PM
Replies: 5
Views: 1,113
Posted By duforudesign
Thumbs up Fair enough. Per the manual: <?php ...

Fair enough.

Per the manual:


<?php
// Use of session_register() is deprecated
$barney = "A big purple dinosaur.";
session_register("barney");
Forum: PHP 03-21-2005, 01:03 PM
Replies: 2
Views: 1,112
Posted By duforudesign
Question Where may we view the webpage this code belongs...

Where may we view the webpage this code belongs to?
Forum: PHP 03-21-2005, 01:01 PM
Replies: 4
Views: 897
Posted By duforudesign
Thumbs up For forms $_POST for anything small one or two...

For forms $_POST for anything small one or two vars you can use $_GET but this doesn't make very search engine friendly URLs. $_SESSION variables are better suited for tracking and storing variable...
Forum: PHP 03-21-2005, 12:57 PM
Replies: 5
Views: 1,113
Posted By duforudesign
Thumbs up If you use sessions be sure and register the...

If you use sessions be sure and register the variable.

session_register('var')

and then you can use it $_SESSION['var'] as any other variable. Use the session_unregister('var') to clean up.
Forum: PHP 03-21-2005, 12:54 PM
Replies: 4
Views: 744
Posted By duforudesign
Question The server will need to be configured if my...

The server will need to be configured if my memory serves me correctly. What server are you using?
Forum: PHP 03-21-2005, 12:53 PM
Replies: 22
Views: 1,889
Posted By duforudesign
Thumbs up It is common practice to reset a lost password....

It is common practice to reset a lost password. As stated above MD5 can be reversed but it takes alot of CPU power.

You can get the random password generator code at phpFreaks.com...
Forum: PHP 03-21-2005, 12:48 PM
Replies: 6
Views: 678
Posted By duforudesign
Question or "\r\n" or event char(10) or char(13)

or "\r\n" or event char(10) or char(13)
Forum: HTML & CSS 03-20-2005, 04:41 PM
Replies: 5
Views: 830
Posted By duforudesign
Post Internet Explorer still has hands down the...

Internet Explorer still has hands down the largest user base...Last statistics I had seen had in a 88%, Firefox has since came on strong so I am not sure what they are today...Either way I recommend...
Forum: HTML & CSS 03-19-2005, 04:10 PM
Replies: 2
Views: 690
Posted By duforudesign
Thumbs up Yes Kurashu is right. 6.3 The @import rule ...

Yes Kurashu is right.

6.3 The @import rule

The '@import' rule allows users to import style rules from other style sheets. Any @import rules must precede all rule sets in a style sheet. The...
Forum: MySQL 03-19-2005, 04:02 PM
Replies: 2
Views: 758
Posted By duforudesign
Thumbs up Are you referring to the following error? ...

Are you referring to the following error?


If so you need to use a full reference on it because the column name is used in both your "products" and "products_categories" tables.

Protocol:...
Forum: PHP 03-19-2005, 03:54 PM
Replies: 6
Views: 751
Posted By duforudesign
Thumbs up You are using a reserved word "CHANGE". Per...

You are using a reserved word "CHANGE".

Per the MySQL manual:

Reference page 527 of the manual for complete list.

If you have a column named "change" then you will need to reference as...
Forum: PHP 03-19-2005, 03:40 PM
Replies: 2
Views: 855
Posted By duforudesign
Thumbs up Just let MySQL do the math for you? SELECT ...

Just let MySQL do the math for you?

SELECT
SUM(sanfl_coach_career.games) AS games_sum,
SUM(sanfl_coach_career.wins) AS wins_sum,
SUM(sanfl_coach_career.wins) / SUM(sanfl_coach_career.games)...
Forum: PHP 03-18-2005, 11:01 PM
Replies: 2
Views: 839
Posted By duforudesign
Question It already returns an array. What exactly are you...

It already returns an array. What exactly are you looking to do?

per php4 manual
mysql_fetch_row
Get a result row as an enumerated array (PHP 3, PHP 4 )
array mysql_fetch_row ( resource result...
Forum: PHP 03-18-2005, 10:57 PM
Replies: 11
Views: 2,440
Posted By duforudesign
Thumbs down As long as you are not passing private...

As long as you are not passing private information this is an acceptable means. I recommend the use of sessions personally. That way your variables are protected.
Forum: PHP 03-18-2005, 10:55 PM
Replies: 4
Views: 831
Posted By duforudesign
Question May I ask a silly question? what is the purpose...

May I ask a silly question? what is the purpose of this script?
Forum: PHP 03-17-2005, 11:18 PM
Replies: 6
Views: 917
Posted By duforudesign
You might identify a project for yourself that is...

You might identify a project for yourself that is of interest...Forums are great but might be a bit much to just jump into...
Forum: HTML & CSS 03-17-2005, 11:10 PM
Replies: 4
Views: 925
Posted By duforudesign
Question Where can we view this in operation?

Where can we view this in operation?
Forum: Graphics and Multimedia discussions 03-17-2005, 10:58 PM
Replies: 4
Views: 968
Posted By duforudesign
Unhappy That is a bumber your host doesn't provide...

That is a bumber your host doesn't provide php...You could use Mambo if they did...We have affordable php hosting if you are interested in changing host.
www.duforu.com/webhosting
...
Showing results 1 to 25 of 27

 
Forum Jump

All times are GMT +1. The time now is 08:08 AM.