Jump to content

redbullmarky

Staff Alumni
  • Posts

    2,863
  • Joined

  • Last visited

    Never

Everything posted by redbullmarky

  1. Hello all! So .... you've finished your site and you need critique. Or you just feel like helping out or having a dig at someone's efforts. Well - this IS the place, but please be aware of the following: For those after critique: If you used a template, and you have not provided the relevent credits to the template creator as required, DO NOT POST YOUR SITE FOR CRITIQUE HERE. We do not condone blatant theft of other people's hard work. If it's not your own site you want critique on, DON'T EVEN GO THERE! The Website Critique board is for getting help, suggestions and feedback for your site - not a place to plug for new site members, as this makes your topic nothing more than spam. If you want people to test out member-only features, provide a test account username/password. Do not encourage people to join up. The general forum guidelines do apply here still... before you ask for a critique, please view your site at different normal resolutions and with at least two browsers. You may be amazed to learn that not everyone has the same choices as you think are the best. For critics: "it's great", "wow", "nice job" or even "it's rubbish" with nothing to back it up is NOT a critique, but most probably a quest to increase one's post count. As these type of posts offer no help to the site owner and no help to those reading, they will more than likely be removed. If you like a site, say why. If you dont like it, say why. it's helpful to identify what browser(s) and resolution(s) you used to view the site. Many times, a comment is incomprehensible to the OP who may be stuck using wizzbrowser 27.0 at a screen resolution of 4000x4000 If you need to find out more info that is not offering your own thoughts, help, suggestions, etc (such as "wow, how did you do that? where did you get that from?" - a PM to the member in question is all that's required, and will keep the topic - well - on topic. Besides, many questions that are asked that fall under this category can be answered by one of the items in the Resources Sticky Cheers!
  2. ...shouldnt really be using an FTP program or building websites anyway
  3. an excellent read if you're looking for recommendations for Rails-inspired PHP frameworks: http://www.h3rald.com/articles/view/rails-inspired-php-frameworks/
  4. lol an "Insult" generator and a person that eats animals and chucks up - beats "Hello World" any day
  5. oops. this line: $verbs = array('dislikes', 'sits on', 'licks', 'sucks', 'looks like', 'does', 'discusses the pros and cons of Web 2.0', 'loves', 'caresses', 'slides onto', 'hates', 'kisses', 'learns PHP with', 'has an AJAX interface with'); should be 'discusses the pros and cons of Web 2.0 with'
  6. dirty little sod, aint he?! BTW, can we standardise spaces/tabs? when it gets really tempting to try this out in our fave text editor, it doesnt always work for some reason unless the tabs/spaces are deleted+replaced. no idea why...
  7. <?php $relatives = array('mother', 'father', 'sister', 'brother','uncle', 'auntie'); $verbs = array('dislikes', 'sits on', 'licks', 'sucks', 'looks like', 'does', 'discusses the pros and cons of Web 2.0', 'loves', 'caresses', 'slides onto', 'hates', 'kisses', 'learns PHP with', 'has an AJAX interface with'); $animals = array('dogs', 'cats', 'horses', 'birds', 'giraffes', 'elephants', 'hippos', 'hamsters', 'gerbils', 'monkeys'); function insult($secondary_person) { global $relatives; global $verbs; global $animals; $r_size = sizeof($relatives) - 1; $v_size = sizeof($verbs) - 1; $a_size = sizeof($animals) - 1; $r_rand = rand(0, $r_size); $v_rand1 = rand(0, $v_size); $v_rand2 = rand(0, $v_size); $a_rand = rand(0, $a_size); $insult = "Your {$relatives[$r_rand]} {$verbs[$v_rand1]} $secondary_person and {$verbs[$v_rand1]} {$animals[$a_rand]}"; return $insult; } class Greeting { function Greeting() { echo "Hello World!"; } } interface Actor { public function speak(); public function meet($person); } class Franky implements Actor { private $person; public function meet($person){ $this->person = $person; } public function speak($insult_them = false){ if($this->person == null){ $greet = new Greeting(); echo '<br />'; } else { echo 'Hello '.$this->person.'!<br />'; if ($insult_them) { echo insult($this->person) . '<br />'; } } } } $h = new Franky; $h->speak(); $h->meet('Jesus'); $h->speak(true); ?> edit: i am not responsible for the output of this sample program. if you find it offends, then blame PHP, not me. everything in the above code is clean, non-offensive English.
  8. <?php class Greeting { function Greeting() { echo "Hello World!"; } } $greet = new Greeting(); ?>
  9. I'd like to suggest this article from Sitepoint (original version here) as it was the first to properly open my eyes to PHP-based template "engines" and how easy it is to make a lightweight template class using PHP as its native syntax. For those a bit baffled by Smarty and suchlike, with the new set of syntax they introduce, the article is perfect. Cheers Mark
  10. i like to add 'PHP and MySQL Web Development' by Luke Welling and Laura Thomson to the list of recommendations. It's not lame, neither is it hardcore, but it teaches you things from simple 'Hello World' scripts right through to developing content management systems, email programs, etc. It's pretty much written in 'English' speak too, not programmers speak, so people of all levels will easily find it useful.
×
×
  • 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.