Jump to content

Cook

Members
  • Posts

    64
  • Joined

  • Last visited

    Never

About Cook

  • Birthday 12/17/1970

Profile Information

  • Gender
    Male
  • Location
    Singapore

Cook's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Thanks all for the feedback. Keep it coming please. www.bizsox.com I am quite relieved to see that the first impression is good. There's a point where you get so involved in what you're doing that it blinds you and you can't judge for yourself any more. @redbullmarky: Glad you like it better. Re 'Sock it to me!', the comical effect is sought after, to grab attention; same for the slogan, the play on words contributes. I don't think it clashes with the target population. Actually if that target comprises of the (business)men themselves, but also - maybe even more so - their wives (and/or their moms?! ), it might work even better. At least that's the rationale. BTW, from a feature point of view, gift subscriptions will be the next enhancement. @steelmanronald06: Yes, that's the spirit of the site and service, 100%, with the added convenience of the subscription concept.
  2. Hello, Ok, BizSox v2 is here! The last two weeks were spent redesigning it to take into account all the good feedback I got here. What do you think? www.bizsox.com All constructive feedback most welcome. Some comments: 1- Coded by hand, PHP + XHTML + CSS + little JS. 2- JS limited to strict minimum, always degrading nicely. 3- Uses Peterned's csshover.htc to enable css-driven menus in IE - thanks Peter! 4- Tested ok in Opera, FF, IE6, IE7, Safari, in several sizes - I dropped support for IE5.5, it's dead after all! 5- Best viewed in 1024 x 768 and above, not ok any more in 800 x 600, but that resolution is pretty much dead too! Thanks for taking the time. Cook
  3. A few ideas Customer service - responsive - efficient - helpful - friendly - available 24/7 - forums Reliability - redundant infrastructure - raid arrays for account disks Software - PHP, MySQL, PostgreSQL, Perl, etc... - Script libraries - CPanel or other good account mgt GUI -- Cook
  4. Thanks again everyone, it is great to get such useful feedback, really appreciate. A lot is going on right now to incorporate all of it, well, a good 90% of it. I won't part totally with the color scheme, but am adapting it by introducing one more color, much brighter. The little images at the top and bottom are gone. The text is limited to what value the service brings to the customers, in an easier-to-read way. News and good to know are gone, replaced with few words on the concept. The drop shadow around the page is gone. Well, quite a makeover. But these are just teasers, the new version should be online soon, give me a few more days. Thanks again, Cook
  5. Check out ini's error_log, should point you to file where errors are... well, logged.
  6. Thanks a lot for the very useful feedback everybody, I'm taking all of it on board and putting together a new look. Will post project when it's ready.
  7. Good, this is good, that's a lot of feedback I can do something with. Thanks! Keep it coming. Here's the link again, just for convenience: www.bizsox.com
  8. @rcorlew: Thanks! We do ship worldwide, but chose to set our prices are in USD anyway. @448191: That's a fair point and I'll keep it in mind. So far the response is on the positive side accross age groups. Yet I'll monitor according to your comment. Thank you. More critiques welcome: www.bizsox.com
  9. Hello, After much effort indeed, my ebusiness lauched a few months ago. The last weeks have been spent fine-tuning everything, and the site is now quite complete. It needs critique! Positive, negative (constructive), any feedback is welcome. Some comments first though: 1- Entirely coded by hand, a to z, php+xhtml1.0+css+little JS. 2- JS limited to strict minimum, always degrading nicely. 3- Uses Peterned's csshover.htc to enable css-driven menus in IE (thanks Peter!) 4- As far as I could, tested ok in Opera, FF, IE5.5, IE6, IE7, Safari, in several sizes. 5- Best viewed in 1024 x 768 and above, but still ok in 800 x 600. www.bizsox.com Thanks for taking the time. Cook
  10. That's because the script in your book relies on REGISTER_GLOBALS being turned on, when very likely your csetup has it off (default setting of PHP nowadays). Use $_REQUEST['username'] instead of just $username and it should work better. I used $_REQUEST because I don't remember if the default method for a form is GET or POST, so $_REQUEST will work either way. But better would be to specify the method in the <form> tag: print <<<HERE <form name="myform" method="post" action="$_SERVER['PHP_SELF']"> (...) Then you can use $_POST['username'].
  11. A simple version: $query = "the query that hitman6003 gave you"; $result = mysql_query($query); while ($row = mysql_fetch_row($result)) {   list($field1, $field2, $field3) = $row;   // do stuff with data }
  12. At the time I checked, your footer was a the bottom of the page. Problem solved?
  13. Check out PHPlot.php ([url=http://www.phplot.com]http://www.phplot.com[/url]), a GNU-licensed package to plot all kinds of charts, fairly easy to use, helps you concentrate on conveying your message through good-looking charts rather than spending (wasting?) time on re-inventing the wheel.
  14. No, for that you would have to use an if-else construct.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.