No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
I'm Nicholas Quinlan or Nick for short. I've been using (or more like been glued to) computers since the age of three, just ask my parents. At age five, I think that I might have had one of the most well planned and marketed lemonade stands a five year…
- Interests
- Hiking, camping, backpacking, photography, programing, SEO
- PC Specs
- MacBook Pro - Mac OS 10.6 2.53 GHz Intel Core Duo 4GB 1067 MHz DDR3
13 Posted Topics
Re: I haven't used it much but [URL="http://opencart.com"]OpenCart[/URL] is great in my experience and definitely worth checking out. The docs aren't great but the forums are full of information and tutorials. | |
Re: Check out SEO forums, read the blogs, maybe try to get a job in a similar area, learn from experience. I love [URL="http://www.seomoz.org/blog"]SEOmoz[/URL] and [URL="http://www.mattcutts.com/blog/"]Matt Cutts'[/URL] for SEO information, and there are plenty. Industry conferences, and the like are also very helpful. But really all it is is understanding what … | |
Re: Both Google and Bing have acknowledged that social factors are a form of ranking. With the rise of Social Results in search [Google Social Search](http://searchengineland.com/google-expands-social-circle-in-search-results-including-page-rankings-65202) [Google +1](http://www.google.com/+1/button/) and the possibility of a [Facebook enhanced search](http://www.businessinsider.com/facebook-search-engine-2011-3) it is becoming a bigger factor everyday. Additionally posting a link on Twitter gets in … | |
Re: YouTube can be useful from an SEO perspective as Google likely uses video views as a ranking factor for pages, because it is a social indicator. Another benefit of YouTube is that it can help with SERP (search engine result page) result saturation, because Google will frequently pull videos and … | |
Re: Article submission can be beneficial for SEO based on the number of backlinks you get, like [B]tiggsy[/B] said, however, it is also duplicate content spread throughout the web and there is much talk that duplicate content does not pass rank as well if at all. This is especially true of … | |
Re: I would recommend using an AJAX query to a php file that could provide you with the data. A similar example is provided by [URL="http://www.w3schools.com/PHP/php_ajax_database.asp"]W3Schools[/URL]. | |
Re: Point the image to a PHP file with the following code: [CODE=PHP] header('Content-Type: image/gif'); if($condition){ readfile("true.gif"); }else{ readfile("false.gif"); } [/CODE] Of course that is for GIFs and you would change that out accordingly and in the header(); using [URL="http://en.wikipedia.org/wiki/Internet_media_type#List_of_common_media_types"]media types[/URL]. | |
I'm trying to find a way to find the URL of an external HTML document when it embeds an image generated by PHP. So for example I would want the following to happen if these two documents occurred. [B][url]http://example.com/index.html[/url][/B] [CODE=HTML] <img src="http://otherplace.org/image.php" /> [/CODE] [B][url]http://otherplace.org/image.php[/url][/B] [CODE=PHP] header('Content-Type: image/gif'); readfile("test.gif"); $thelocation … | |
![]() | Re: I would recommend making the HTML file a PHP file and putting the php powered chat box where you need it, but if you insist on keeping it all HTML then I would make an iframe. |
I am trying to pipe an email to PHP. I currently have set up a forwarder in cPanel that does the following : [B]|/home/username/public_html/mailscripttest.php[/B] mailscripttest.php has permissions 755 and contains: [CODE=php] #!/usr/bin/php –q <? /* Read the message from STDIN */ $fd = fopen("php://stdin", "r"); $email = ""; // This … | |
I am looking for an ecommerce solution similar to [URL="http://simplecartjs.com/"]SimpleCart[/URL] in the fact that it is one page and allows PayPal (or Google Checkout ect.) to handle the heavy lifting. However, I need something that can calculate shipping costs and deal with in stock/out of stock items. I would really … | |
Re: Hi. If you want to make a shopping website, I [B]highly[/B] recommend looking into a [URL="http://php.opensourcecms.com/scripts/show.php?catid=3&category=eCommerce"]Content Management System or CMS[/URL] as the in's and out's of ecommerce can get quite complex. If you are determined, however, I recommend checking out [URL="http://www.devshed.com/c/a/PHP/Creating-a-Secure-PHP-Login-Script/"]this page[/URL]. It's good to learn how to make a … | |
Re: As far as I can tell the best you're going to be able to do is link to the php file that creates a vcal event. Your email script would read something more like: [CODE=php] $body = ''; $body .= "<a href=\"http://example.com/vcalgenerator.php?organizer=Administrator@exchange.org&start=" . date('Ymd',$meeting['start_mktime']) . date('His',$meeting['start_mktime']) . "\">Download a Calendar … |
The End.