Everything posted by PhilipMClifton
-
Beta Portfolio Review
Thank you guys for your kind words
-
Beta Portfolio Review
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
-
1.2hour Site
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
-
1.2hour Site
yeah, i know. spelling and copy isn't my strong point. I'm almost blind to it. what parts wrong. Would appreciate your help.
-
1.2hour Site
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
-
Getting there
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
-
Getting there
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?
-
Media Temple Hosting
It's set up and ready if you guys want in.
-
Media Temple Hosting
you guys google yourselfs alot but dont respond to support messages very fast.
-
Media Temple Hosting
its a dedicated virtual with reseller tools..
-
Media Temple Hosting
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..
-
Media Temple Hosting
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.
-
Nightmare
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?/
-
How does one create a website with a design like this?
Learn html first, then jquery, flash is dead.
-
Help with .htaccess
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
-
Google+ Invites
ive had it from launch now. not even checked it out yet.
- Html in box
-
Html in box
oooh dear, i swear i tried that... i knew that. im so much more tired then i thought.
-
Html in box
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.
-
New personal web site. Playwiththeweb
Awsome! and im supprised you could get a domain like that!
-
mulitdimentios
**** thats because i was compairing to a diffrent db lol
-
mulitdimentios
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!!?
-
mulitdimentios
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;
-
mulitdimentios
Deffantly need to have this done tonight.. anyone have an idea?
-
mulitdimentios
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