Jump to content

gary80

Members
  • Posts

    11
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

gary80's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. that's ideal, much easier for me to read
  2. where it says 'Gloore Discsussion Boards On Gloore Discussion Boards users can share tutorials, ask questions about coding or any other related topic between our categories, suggest features, leave feedback, report bugs or talk for offtopic stuff in the offtopic section.' at the top left of the front page. its not so bad on my notebook, but with 1920 x 1080 is a little harder to read
  3. for a first go, its pretty good. I'm not so much a fan of the green, however that just me. to make it better i would add some padding, i.e. give that same amount under the search input as above it, also the part Gloore Discussions board, I would maybe increase the line height and make the text easier to read.
  4. for me the text is too small, in chrome i'm zooming to 144% to be able to read it.
  5. FML! I was trying to alter the $1 part, thanks thorpe (yeah he did)
  6. hey, trying to use mod rewrite, if i use RewriteRule projects/(.) index.php?view=detail&name=$1 the $1 part only picks up one character, how do i get it to pick up multiple characters of unknown length? thanks.
  7. <?php $currentPage = '_pdfs/spp_2_inch_pump.pdf'; ?> <div id="download"> <a href="<?php echo links($currentPage); ?>">Download (<?php echo links($currentPage); ?>)</a> </div> just change the value of $currentPage, if it matches anything in the switch a value will be returned
  8. sorry i forgot the breaks earlier, how about <style> A { color:#000; text-decoration:none; } A:Hover { color:#F00; } </style> <?php function links($currentPage) { switch($currentPage) { case '_pdfs/spp_2_inch_pump.pdf': return 'diesel_driven_high_head_high_pressure_pumps.php'; case 'spp_3_inch_pump.php': return '_pdfs/spp_3_inch_pump.pdf'; case '100pp43_pump.php': return '_pdfs/100pp43_pump.pdf'; case 'spp_4_inch_pump.php': $value = '_pdfs/spp_4_inch_pump.pdf'; case '100pp44_pioneer_pump.php': return '_pdfs/100pp44_pioneer_pump_100pp44.pdf'; case 'spp_6_inch_pump.php': return '_pdfs/spp_6_inch_pump.pdf'; case '150pp66_pioneer_pump.php': return '_pdfs/150pp66_pioneer_pump_150pp66.pdf'; case '250pp10_pump.php': return '_pdfs/250pp10_pump.pdf'; } return $value; } $currentPages = array( '_pdfs/spp_2_inch_pump.pdf', 'spp_3_inch_pump.php', '100pp43_pump.php', 'spp_4_inch_pump.php', '100pp44_pioneer_pump.php', 'spp_6_inch_pump.php', '150pp66_pioneer_pump.php', '250pp10_pump.php' ); ?> <div id="download"> <?php foreach($currentPages as $currentPage) { ?> <a href="<?php echo links($currentPage); ?>">Download (<?php echo links($currentPage); ?>)</a> <br /> <?php } ?> </div>
  9. couldnt you use a switch? <?php switch($currentPage) { case '250pp10_pump': echo '_pdfs/250pp10_pump.pdf'; case '2': echo '_pdfs/2.pdf.pdf'; #etc... } ?>
  10. thanks for the nice comments. completely agree, with the lack of descriptions its on the to do list. yeah, the projects are disconnected I seem to have a little bit of everything as opposed to a lot of something, I'm thinking about adding a footer that shows the project categories and possibly highlights some of my skills. just out of interest, I just had an employment agency call me about an entry level PHP job, unfortunately it was too far away, their company wanted someone with framework (preferably) zend experience. Do you think that lots of employers will want framework experience? if so which one should i learn first and is there any recognized accreditation for it?
  11. Hi Guys, Ive just finished uni and I'm trying to put a portfolio together, some feedback would be much appreciated cheers http://www.garyconstable.co.uk
×
×
  • 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.