Web Design Forum: terydinho - Viewing Profile - Web Design Forum

Jump to content

WDF
WDF Premium Memberships Reseller Hosting

terydinho's Profile User Rating: *****

Reputation: 223 Excellent
Group:
Moderators
Active Posts:
2,719 (2.42 per day)
Joined:
08-January 09
Profile Views:
20,754
Last Active:
User is offline Yesterday, 10:02 AM
Currently:
Offline

My Information

Member Title:
Go go gadget xhtml
Age:
29 years old
Birthday:
November 6, 1982
Gender:
Male Male
Location:
East London, UK
Interests:
Football, Design, Art, TV, Movies, Reading, Music, Poker & Running

Contact Information

E-mail:
Private
Website URL:
Website URL  http://www.robfenech.co.uk

Users Experience

Experience:
Web Guru
Area of Expertise:
Designer/Coder

Latest Visitors

Topics I've Started

  1. SEO Budgets and where money goes

    28 January 2012 - 04:47 PM

    Hi all

    I have an SEO question for you - I have a mate who is being offered SEO services for £500 per month. Now my SEO knowledge goes this far:

    1. Good content
    2. Good code
    3. Good link structure
    4. Good URL Structure
    5. Get in-bound links (not by buying them)

    And that is about it. So answer me this - what would a £500 per month budget actually be buying you in SEO terms? Just time spent on the above list? or are there paid for services that I don't know about?

    I would like to start branching out into SEO in a bit more depth and offering it as a service to my clients, but other than the obvious, I don't know enough about it. So anything you guys can throw at me would be awesome.

    Cheers :)
  2. Honey, I'm home....

    06 January 2012 - 12:51 PM

    Hi all,

    Haven't been about for around a month as I have been on holiday for Xmas and New Year with visiting family in the USA. So just a quick hello to say I am back and on the forums again.

    Hope everyone had an awesome holiday period

    Tel
  3. MW3 - who is getting it?

    03 November 2011 - 05:23 PM

    Right then - who is getting MW3 next week? I know I am!!!

    Anyone getting it and on Xbox - let me know and we can get a little WDF game going with a few of us!
  4. PDF from PHP with a pre-designed template

    28 October 2011 - 09:51 AM

    Hi all

    Little question for you php wizards - can one do the following:

    1. Create a PDF template in say InDesign
    2. Export that template
    3. Use PHP Variables to populate said PDF
    4. Make it available for download with a unique filename

    Basically, I am creating a little pedigree system, mainly for fun - now I have my entire pedigree working perfectly in terms of displaying on a page - but I want to throw all the variables I have taken and put them into a nicely designed PDF so that the user can view/download/print it

    Thanks all :)
  5. Creating a pedigree system - lil' help

    27 October 2011 - 10:49 AM

    Hi all

    I am creating a pedigree system in wordpress for a little private project for a family member.

    Where I am at the moment is here:

    I have added some custom fields to hold the id_number of the mother and father of the horse, I can now display the Horse name, and the Horse's Mother and Father in a nice list

    What I want to do is delve one step further and get the grandparents too - any ideas on how I would do this?

    My code to get the variables so far is:

    <?php $horseName = get_post_meta($post->ID, 'horse-name', true); ?>


    <?php $fatherName = get_post_meta($post->ID, 'father-id', true); ?>


    <?php $motherName = get_post_meta($post->ID, 'mother-id', true); ?>




    So what I am thinking is how do I check the database for the mother's mother and father's details? Does this make sense?