• Visitors can check out the Forum FAQ by clicking this link. You have to register before you can post: click the REGISTER link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. View our Forum Privacy Policy.
  • Want to receive the latest contracting news and advice straight to your inbox? Sign up to the ContractorUK newsletter here. Every sign up will also be entered into a draw to WIN £100 Amazon vouchers!

test please delete

Collapse
This is a sticky topic.
X
X
  •  
  • Filter
  • Time
  • Show
Clear All
new posts

    Originally posted by El_Diablo View Post
    I'm tinkering with the Diablo Network, and nearly strangled myself with the network cables under the desk.
    Oops -that's my trick. Normally after hubby has unplugged my printer to plug some new gadget he has brought to charge

    Who was it that did something similar and killed their mouse?
    Just call me Matron - Too many handbags

    Comment


      Originally posted by zara_backdog View Post
      Oops -that's my trick. Normally after hubby has unplugged my printer to plug some new gadget he has brought to charge

      Who was it that did something similar and killed their mouse?
      er...not me..
      That boy go raaaaaaa
      Copyright (C) BabyBear1 - with thanks to VF for hosting

      Comment


        Originally posted by TheFaQQer View Post
        Nah - it was a big do for lots of contractors.

        And I'm not THAT desperate to meet them!

        Oh at least in the big do's you can mingle.
        That boy go raaaaaaa
        Copyright (C) BabyBear1 - with thanks to VF for hosting

        Comment


          Originally posted by zara_backdog View Post
          Lucky you!

          DS still demanding another drink and DD who has given up trying to pinch my laptop is now trying to pinch my wine
          Hmmm, that all sounds very familiar
          Where are we going? And what’s with this hand basket?

          Comment


            OK Ok I gve in....Hubby has called saying he has had a liitle too much to drink and is now comng home. DD is just going to bed and DS is still demanding he watch another DVD/Video...

            Oh for a quite night
            Just call me Matron - Too many handbags

            Comment


              Originally posted by zara_backdog View Post
              Cheers

              I have just had a look at a couple of sites and it looks a little like HTML - Oh well I will know Monday if I have the gig or not.
              PHP?

              What you're seeing there is HTML, with bits of PHP code embedded in it.

              Basically, a PHP file can either be pure code, or an HTML template, similar to ASP and JSP. So in something like

              Code:
              <div id="masthead">
                 <h1><?php echo($site->name) ?></h1>
                 <h2><?php echo($site->strapline) ?></h2>
              </div>
              <ul id="navigation">
                 <?php foreach($site->pages as $page) : ?>
                 <li><a href="<?php echo($page->URL) ?>"><?php echo($page->title) ?></a></li>
                 <?php endforeach ; ?>
              </ul>
              there's actually a load of HTML and PHP mashed together.

              Of course some buffoons will have loads of business logic and database access stuff all mixed in together with the HTML, but a competent developer should have abstracted all that away into separate files.

              Such PHP on its own looks more like C++, Java or JavaScript:

              Code:
              <?php
              
              class Category {
                  
                  var $id;
                  var $title;
                  
                  function Category($id, $title) {
                      $this->id = $id;
                      $this->title = $title;
                  }
              
                  function capitalise_title() {
                      return strtoupper($this->title);
                  }
              
              }
              
              ?>
              (That's PHP4 - there's better syntax for class definitions in PHP5.)
              Last edited by NickFitz; 27 November 2008, 21:43.

              Comment


                Cheers Nick

                I will let you know if I get the role. Prehaps I can pass some work to some one out there!
                Just call me Matron - Too many handbags

                Comment


                  Originally posted by zara_backdog View Post
                  Cheers Nick

                  I will let you know if I get the role. Prehaps I can pass some work to some one out there!
                  HTH

                  Comment




                    Best Forum Advisor 2014
                    Work in the public sector? You can read my FAQ here
                    Click here to get 15% off your first year's IPSE membership

                    Comment


                      Originally posted by TheFaQQer View Post


                      Night Faq
                      That boy go raaaaaaa
                      Copyright (C) BabyBear1 - with thanks to VF for hosting

                      Comment

                      Working...
                      X