Search results

  1. conor

    URL Parameter Question

    If you don't change the code then you don't change what happens on the page - simple as that! If you add something to the URL you need to add something to the code to interpret that URL or else it means nothing. I could show you something with minimal change to the code but you would still need...
  2. conor

    URL Parameter Question

    You will need to pass a paramater through the url. This is possible in JavaScript and PHP. With PHP you could do something like this: "http://www.easportsworld.com/en_US/stats/index/id/3508/index.php?menu=nca-football" Then pick it up in your PHP document with: <?php //check if the menu...
  3. conor

    Furasta CMS - Beta 1 v0.1

    hi, At the moment the cms only generates meta tags such as description, title, tags etc. But in the future I do plan to expand on that. The CMS generates XHTML as much as possible and if you look at the front end source once you have installed then you will see that it is not all over the...
  4. conor

    Furasta CMS - Beta 1 v0.1

    Hi, I am currently working on writing my own CMS. I have just released the first beta of v0.1 and am anxious for some feedback. As this is a beta I have not concentrated on cross browser compatibility yet, it has been tested on Firefox 3 Fedora and I would not be surprised if it looked...
  5. conor

    learning web design by yourself

    get a book and go online at w3schools. The best way to learn is to practice practice practice
  6. conor

    Easiest way of changing text on site

    True just do it yourself or if you don't know how try cms made simple
  7. conor

    Mod_rewrite

    hi, I am trying to set a directory index and the code that I am using doesn't seem to work. RewriteEngine on RewriteCond %{SCRIPT_NAME} !\.php RewriteRule ^([^./]*)$ /index.php?page=$1 [L] directoryIndex /index.php?page=Home I want anyone who searches for http://blank.com to be...
  8. conor

    window, Linux or Mac?

    New graphical software for linux - have you tried the new GIMP 2.6.3? It if a million times better than the old one and its not as complex or awkward! :L
  9. conor

    Hi I made a new search engine named Zhift. it would be nice if you want to review it.

    oh i like it!! good idea with the images aswell as text! the one thing is that i zhifted my name and my blog didn't show up! All these other references to me did but no mention of my blog - which shows up first on Google! :L:L
  10. conor

    aligning along the y-axis ?

    if your using tables - which would be a bad idea - you can do vertical-align:middle; if not then heres a good article on how to do it without tables, it might require a re-structure on your page though.... http://www.jakpsatweb.cz/css/css-vertical-center-solution.html
  11. conor

    User manageable image gallery

    hmm... this might not be exactly what you want but it's worth a try. http://kfm.verens.com It is a file manager that works entirley online and manages any files and is particularily good with images. You could give your clients access to this and they could edit everything.
  12. conor

    trouble with search engines

    you say that you have added meta tags? they only work if the keywords that you have entered show up in the sites content. how long has the site been up for? I just ran a google search for "Sergey Alibekov's official website" and your site showed up second. So it is already visible to Google!!!:-)
  13. conor

    Total newb: Need some help regarding forms

    That link isn't working. Looks like the file isn't there, did you delete it?
  14. conor

    Total newb: Need some help regarding forms

    are you sure? Almost all hosts do support php. To check Create a new document with one line: <?php phpinfo(); ?> Save it as test.php and then open it with your browser. It should return a page full of information. If not then php is not installed. If you manage to get the example working then...
  15. conor

    Total newb: Need some help regarding forms

    heres a form that sends an email that i wrote a while back. I have edited the info for your needs. You can see it in action at http://macaoidh.name/work/order-form/ <div id="client_sales"> <?php //start client sales //set post variables $media_type = $_POST['media_type']; $email =...
  16. conor

    The Gimp

    I use GIMP for linux. The old versions aren't spectacular and I often still find myself reverting back to photoshop at times... But i think that you'll be plesantly surprised when you install the new release - 2.6. I haven't yet got round to updating myself but I have herd some very good...
  17. conor

    Internet Explorer Vs Firefox

    microsoft have a complete monopolly on everything. if you get out there and try new stuff i'm sure you'll find that theres more to web browsing than internet explorer.
  18. conor

    CSS div positionning problem in different browsers/OS

    He seems to have fixed his problem so all is good! :-) It's not clear from what he provided but he is trying to. If you go to http://users.skynet.be/fa314098/index.htm you will see what I mean. I'm refering to this code which had a float and was an inline element. He has obviously since...
  19. conor

    CSS div positionning problem in different browsers/OS

    create a table. that way you can use columns instead of floats. a lot of people don't understand how to use floats - you cannot float inline elements. heres a tutorial on how to use floats: http://webdesign.about.com/od/advancedcss/a/aa010107.htm
Top