Goto Page: 1, 2
Actual Results
- msj1013
- Forum: Programming / Scripting / Coding Forum
- Topic: PHP email format
- Subject: PHP email format
- Replies: 3
- Views: 242
- Subject: PHP email format
Posted: August 29th, 2009, 7:43 pm
on line 71:
there is a semicolon between $name and $location
there is a semicolon between $name and $location
- msj1013
- Forum: Programming / Scripting / Coding Forum
- Topic: include PHP script from MyQSL database
- Subject: include PHP script from MyQSL database
- Replies: 5
- Views: 401
Posted: December 14th, 2008, 10:21 pm
You can also use the eval() function in php to evaluate code.
http://us.php.net/eval
http://us.php.net/eval
- msj1013
- Forum: Website Reviews
- Topic: SITE REVIEW: http://michael.pricon.us
- Subject: SITE REVIEW: http://michael.pricon.us
- Replies: 9
- Views: 359
Posted: March 14th, 2008, 5:51 pm
thanks to everyone for their input.
- msj1013
- Forum: Website Reviews
- Topic: SITE REVIEW: http://michael.pricon.us
- Subject: SITE REVIEW: http://michael.pricon.us
- Replies: 9
- Views: 359
Posted: March 14th, 2008, 5:51 pm
zaiah, your not being too critical, this is exactly what I'm looking for.
- msj1013
- Forum: Programming / Scripting / Coding Forum
- Topic: Problem with a database driven site script
- Subject: Problem with a database driven site script
- Replies: 4
- Views: 261
Posted: March 14th, 2008, 5:45 pm
I would assume the query is returning false, check the result of the query.
- msj1013
- Forum: Programming / Scripting / Coding Forum
- Topic: Array sorting
- Subject: Array sorting
- Replies: 2
- Views: 197
- Subject: Array sorting
Posted: March 14th, 2008, 5:37 pm
wonderful solution, I never thought of doing it that way.
- msj1013
- Forum: Programming / Scripting / Coding Forum
- Topic: PHP/MYSQL order by (with grouping)
- Subject: PHP/MYSQL order by (with grouping)
- Replies: 3
- Views: 249
- Subject: PHP/MYSQL order by (with grouping)
Posted: March 14th, 2008, 5:35 pm
I would do it using 3 separate queries; one for main, monster and alt. Then in each query you can order by guildstatus.
- msj1013
- Forum: Website Reviews
- Topic: SITE REVIEW: http://michael.pricon.us
- Subject: SITE REVIEW: http://michael.pricon.us
- Replies: 9
- Views: 359
Posted: March 11th, 2008, 10:01 am
bump
- msj1013
- Forum: Website Reviews
- Topic: SITE REVIEW: http://michael.pricon.us
- Subject: SITE REVIEW: http://michael.pricon.us
- Replies: 9
- Views: 359
Posted: March 10th, 2008, 8:12 pm
I just started this site a couple of days ago as a portfolio of my work. I'm looking for feedback on any part of this website and/or any of the web projects I've got listed on their. If you have any ideas on layout, content, or functionality please reply. Thanks in advance for all input.
- msj1013
- Forum: Website Reviews
- Topic: SITE REVIEW: Better Trophies Better Prices
- Subject: SITE REVIEW: Better Trophies Better Prices
- Replies: 4
- Views: 446
Posted: March 10th, 2008, 8:06 pm
Great and simple design. The only feedback I can give is that having the add to basket button at the end of the product list is a little confusing. I recommend that the button is available right after each product listing.
- msj1013
- Forum: Website Reviews
- Topic: SITE REVIEW: http://www.unitconverters.net/
- Subject: SITE REVIEW: http://www.unitconverters.net/
- Replies: 13
- Views: 369
Posted: March 10th, 2008, 8:01 pm
Commenting on what cipher said.
Check out the accordian feature from http://www.mootools.net
I think it would be a nice touch.
Check out the accordian feature from http://www.mootools.net
I think it would be a nice touch.
- msj1013
- Forum: Website Reviews
- Topic: SITE REVIEW: http://www.unitconverters.net/
- Subject: SITE REVIEW: http://www.unitconverters.net/
- Replies: 13
- Views: 369
Posted: March 10th, 2008, 7:59 pm
This site is one of the most wonderful things I have seen. You've made my list of bookmarks. I've been looking for a good site for unit conversion and you've got just about everything on there. Definitely easy use and navigate. I do have to agree with c0mrade about the dotted effect, I think it woul...
- msj1013
- Forum: Website Reviews
- Topic: SITE REVIEW: Get Milked
- Subject: SITE REVIEW: Get Milked
- Replies: 17
- Views: 833
- Subject: SITE REVIEW: Get Milked
Posted: March 10th, 2008, 7:52 pm
The layout is simple which is always a plus in my book. The one thing I would change would be to change the arrows to a greyed out version when you get to either end of the list. Not to sound like an idea, but i clicked newest and nothing happened and it took me a second to figure it out. Otherwise,...
- msj1013
- Forum: Programming / Scripting / Coding Forum
- Topic: PHP : Including Things.
- Subject: PHP : Including Things.
- Replies: 11
- Views: 1369
- Subject: PHP : Including Things.
Posted: August 10th, 2007, 5:57 pm
it should be
$action == "main"
not
$action = "main"
double equal sign will return true if they have the same value and false otherwise, a single equal sign is assignment and always returns true
$action == "main"
not
$action = "main"
double equal sign will return true if they have the same value and false otherwise, a single equal sign is assignment and always returns true
- msj1013
- Forum: Website Hosting Forum
- Topic: I would like some advise on redirecting a domain
- Subject: I would like some advise on redirecting a domain
- Replies: 7
- Views: 687
Posted: August 10th, 2007, 5:54 pm
There is a real easy way to do this with php, just put this script on the old page and replace <webpage> with the url your redirecting to
<?php header("location:<webapge>"); ?>
<?php header("location:<webapge>"); ?>

