Web Design Forum: TomCash - Viewing Profile - Web Design Forum

Jump to content

WDF
WDF Premium Memberships Reseller Hosting

TomCash's Profile User Rating: *****

Reputation: 30 Excellent
Group:
Members
Active Posts:
191 (0.16 per day)
Joined:
15-March 09
Profile Views:
3,516
Last Active:
User is offline Sep 27 2011 12:09 PM
Currently:
Offline

My Information

Member Title:
Dedicated Member
Age:
24 years old
Birthday:
November 3, 1987
Gender:
Male Male
Location:
Wolverhampton, England
Interests:
Web development, web design, business & SEO.

Contact Information

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

Users Experience

Experience:
Web Guru
Area of Expertise:
Web Developer

Posts I've Made

  1. In Topic: Pointing non www. to www.

    05 September 2011 - 08:23 AM

    Hey, no problem! Thanks for the +1! :)
  2. In Topic: Pointing non www. to www.

    02 September 2011 - 08:21 AM

    It's important you tell Google Webmaster tools which version of the website you wish to refer to. Then also build all your links to reflect that.

    As for one and one - there's an easy way around this.

    If your route directory for your website, where all of your files sit.

    Create or edit your .htaccess file to contain the following lines of code:

    RewriteEngine On
    RewriteCond %{HTTP_HOST} ^yoursite\.com [NC]
    RewriteRule (.*) http://www.yoursite.com/$1 [L,R=301]


    That will send anyone from the http://yoursite.com to www.yoursite.com

    Hope this helps!
  3. In Topic: Border between web designer and web developer?

    12 August 2011 - 09:34 AM

    View Postevu, on 11 August 2011 - 05:25 PM, said:

    When you classify a designer as the PSD man and a front-end developer as the HTML/CSS man, where does the guy who designs in the browser fit into this?

    The way I currently view things is there's Graphic Designers, Web Designers, Web Developers and then there's the other (specialist?) area's such as Copywriters, IA's, SEOmen, UX Designers, etc. But there's very fine lines between a lot of them.

    Ofc I'm quite a nub to the industry, that's just an easy way for me to categorise them :p

    ~evu.

    "HTML/CSS man" would be "the guy who designs in the browser".

    He would cut the PSD up into flat images, etc and map them to some CSS/HTML and do all the cross browser testing.
  4. In Topic: Border between web designer and web developer?

    11 August 2011 - 07:49 AM

    It depends on the business.

    This isn't an uncommon layout in larger businesses:

    A designer will deliver the interfaces only in PSD format.
    A UI/UX developer will do the CSS, HTML, JavaScript and any client-side sort've interface programming.
    A developer will do all the server side functionality, such as the PHP/ASP, MySQL.
    A copywriter will do all the text and may work with an SEO.

    Bigger businesses sometimes have a person specifically dedicated to database design too.

    Smaller businesses sometimes have their designer do the PSD, HTML, CSS and JavaScript.

    It is also not uncommon for an SEO to write the copy.

    It really does depend...

    If you don't mind me asking - why do you ask? Perhaps we could answer your question more specifically if we knew.
  5. In Topic: a number showing in mine page

    05 August 2011 - 11:47 AM

    View Postkensha, on 05 August 2011 - 11:06 AM, said:

    There is this number showing in mine testing page when I have logged in.

    Here is the script

    php;
    <?php
    //De gegevenset
    $user="Richard";
    $password="Richard";
    $localhost="localhost";
    //De post gegevenset
    $puser=$_POST["user"];
    $ppassword=$_POST["password"];

    if ($puser==$user && $ppassword==$password)
    {echo include("table.php");}
    else
    {echo "Verkeerde Gebruikersnaam of Wachtwoord";}

    ?>

    html;
    <form action="mysqlc.php" name="inlogform" method="post">
    Gebruikersnaam:<br>
    <input type="text" size="30" name="user"><br>
    Passwoord:<br>
    <input type="text" size="30" name="password"><br>
    <input type="submit" value="submit">
    </form>

    the include php

    <table border="2">
    <tr>
    <td>Rij 1, Cell1</td>
    <td>Rij 1, Cell2</td>
    </tr>
    </table>

    The number 1 can also come from that loging was succesfull that is what I expect but how do I remove that 1.

    I can't see a problem there. Perhaps the problem is on the include php?