Skip to content
View in the app

A better way to browse. Learn more.

Web Designer Forum

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

PhilipMClifton

Members
  • Joined

  • Last visited

Everything posted by PhilipMClifton

  1. Thank you guys for your kind words
  2. Hi Guys, I have been MIA for awhile now, Would love to get some constructive criticism on my portfolio site (anyone notices any errors or anything). Still very much in beta, about 2 hours worth of work here. http://bit.ly/101vMhm (shorten the url to prevent google sniffing it but im pretty sure it doesn't work like that) Many thanks Phil
  3. Thanks guys, I'm not looking for google traffic at all. Its to link of to friends.. £8 for reseller £3 for single site @ brightonmike
  4. yeah, i know. spelling and copy isn't my strong point. I'm almost blind to it. what parts wrong. Would appreciate your help.
  5. I decided to throw this site together tonight, took about 1.2hours. I'm to busy to spend much time on it. http://www.formatwebdesign.com
  6. haha yeah, im a coder for a living and i left some rookie mistakes in there haha, its phase one but still not a valid excuse. Proven bmx is the full name and that logo has no meaning in the bmx world so this shouldn't matter too much. thanks for your response
  7. been busy recently working at a new web studio but managed to bang out a quick freelance job. http://provenbmx.com sites not released yet, any inprovements?
  8. It's set up and ready if you guys want in.
  9. you guys google yourselfs alot but dont respond to support messages very fast.
  10. its a dedicated virtual with reseller tools..
  11. i am going to be very generous with the hosting plans and im looking for 20 people max on this server (depending on how its divided up). $4 p/m is prob min buy in price. unlimited domains / subdomains / email accounts e.c.t un-monitored bandwidth. control panel. everything really..
  12. Please understand that I'm not shamefully advertising a hosting company. I currently own a mediatemple server and im simply asking if anyone wants to get involved and get your sites hosted on it. I'm not doing this to make profit, just lower the monthly costs of the server account. Think of it as a shared bed sit. If you are instrested please pm me. You will get a faster reply by email me@philipmclifton.com tho. Its a cheaper way to us all to get mediatemple hosting.
  13. I'm having a nightmare with a paypal express checkout api script. I need to be able to sell tickets online. Does anyone know of a download for a put to gether version of the Paypal api i could edit for my own use? I swear a had one a while back but i cant find it. All i need to be able to do is push a price I generate to the paypal website. Thanks?/
  14. google this, there are loads of websites. Normally they allow for url/content to be a page but url/content/ to be a folder. http://lmgtfy.com/?q=htaccess+rewrite
  15. ive had it from launch now. not even checked it out yet.
  16. Thanks tho!
  17. oooh dear, i swear i tried that... i knew that. im so much more tired then i thought.
  18. I'm creating a html editor box and having perfect sucsess with the create form. but my edit form sometimes takes certain parts of the html inside the textarea and performs it insted of just displaying it as text. any advice on how to prevent the html inside the text area tags from being performed. the reason for the mess up. is the html to be displayed in the textarea, contains a closing textarea tag itself.
  19. Awsome! and im supprised you could get a domain like that!
  20. **** thats because i was compairing to a diffrent db lol
  21. make it an array so i can avoid using a query on an view file. $year_array = array( "1999", "2001", "2002", "2003", "2004", "2005", "2006", "2007", "2008", "2009", "2010", "2011", "2012", "2013", "2014", "2015", "2016", "2017", "2018", "2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026"); $var = array('year' => array( 'item' => array('title' => '', 'slug' => ''))); $a = 0; foreach($year_array as $year) { $var[$a++] = $year; $b = 0; $c = 0; $query = $this->db->query("SELECT * FROM pages WHERE parent = '120' AND DATE_FORMAT(created_date, '%Y') = '$year'"); foreach ($query->result() as $row) { $var[$year][$b++]['title'] = $row->name; $var[$year][$c++]['slug'] = $row->slug; } } echo $var[2008][0]['slug']; var_dump($var); exit; that gives a slightly diffrent output then foreach($year_array as $year) { $query = $this->db->query("SELECT * FROM pages WHERE parent = '120' AND DATE_FORMAT(created_date, '%Y') = '$year'"); if ($query->num_rows() >= 1){ ?> <div class="timeline"> <div class="timeline-year"><p><?php echo $year; ?></p></div> <div class="timeline-entries"> <ul class="time"> <?php } foreach ($query->result() as $row) { ?><li><a href="<?php echo base_url().$origin."/".$row->slug; ?>"><span style="padding-left:20px; "><?php echo $row->name; ?></a></span></a></li><?php } if ($query->num_rows() >= 1){ ?></ul></div></div><?php } } and i dont know whhy!!?
  22. I did it $year_array = array( "1999", "2000" , "2001", "2002", "2003", "2004", "2005", "2006", "2007", "2008", "2009", "2010", "2011", "2012", "2013", "2014", "2015", "2016", "2017", "2018", "2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026"); $var = array('year' => array( 'item' => array('title' => '', 'slug' => ''))); $a = 0; foreach($year_array as $year) { $var[$a++] = $year; $b = 0; $c = 0; $d = 0; $query = $this->db->query("SELECT * FROM pages WHERE parent = '120' AND DATE_FORMAT(created_date, '%Y') = '$year'"); foreach ($query->result() as $row) { $var[$year][$b++]['title'] = $row->name; $var[$year][$c++]['slug'] = $row->slug; } } var_dump($var); exit;
  23. Deffantly need to have this done tonight.. anyone have an idea?
  24. Can someone help me complete this multidimention array.. $year_array = array( "1999", "2000" , "2001", "2002", "2003", "2004", "2005", "2006", "2007", "2008", "2009", "2010", "2011", "2012", "2013", "2014", "2015", "2016", "2017", "2018", "2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026"); $var = array('year' => array( 'item' => array('title' => '', 'slug' => ''))); foreach($year_array as $year) { $var[$a++] = $year; $b = 0; $c = 0; $d = 0; $query = $this->db->query("SELECT * FROM pages WHERE parent = '120' AND DATE_FORMAT(created_date, '%Y') = '$year'"); foreach ($query->result() as $row) { $var['item'][$b++]['title'] = $row->name; $var['item'][$c++]['slug'] = $row->slug; } } var_dump($var); exit; SO far its dumping array 'year' => array 'item' => array 'title' => string '' (length=0) 'slug' => string '' (length=0) '' => string '1999' (length=4) 'item' => array 0 => array 'title' => string 'Antibiotic Reduction' (length=20) 'slug' => string 'antibiotic-reduction' (length=20) 1 => array 'title' => string '1,000 Farm to Fork folks' (length=24) 'slug' => string 'farm-to-fork-folks' (length=18) 2 => array 'title' => string 'Fair Trade Chocolate' (length=20) 'slug' => string 'fair-trade-chocolate' (length=20) 3 => array 'title' => string 'Farmworker Inventory' (length=20) 'slug' => string 'farmworker-inventory' (length=20) 1 => string '2000' (length=4) 2 => string '2001' (length=4) 3 => string '2002' (length=4) 4 => string '2003' (length=4) 5 => string '2004' (length=4) 6 => string '2005' (length=4) 7 => string '2006' (length=4) 8 => string '2007' (length=4) 9 => string '2008' (length=4) 10 => string '2009' (length=4) 11 => string '2010' (length=4) 12 => string '2011' (length=4) 13 => string '2012' (length=4) 14 => string '2013' (length=4) 15 => string '2014' (length=4) 16 => string '2015' (length=4) 17 => string '2016' (length=4) 18 => string '2017' (length=4) 19 => string '2018' (length=4) 20 => string '2019' (length=4) 21 => string '2020' (length=4) 22 => string '2021' (length=4) 23 => string '2022' (length=4) 24 => string '2023' (length=4) 25 => string '2024' (length=4) 26 => string '2025' (length=4) 27 => string '2026' (length=4) i need it to cycle trough the years and define those vals but it only does one and stops

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.