Geekzone: technology news, blogs, forums
Guest
Welcome Guest.
You haven't logged in yet. If you don't have an account you can register now.


ryon

18 posts

Geek


#71347 9-Nov-2010 04:56
Send private message

Hey

What website languages do I need to learn to achieve the following:

I want to be able to create a site that appears more like a program than a website.
To be interactive, produce graphs and present lots of data based on user input without having to reload the page all the time. I kind of plan for the user to load the page once at the beginning (maybe a longer load if necessary), but then not have to load the page again. So for certain parts of the page to load (retrieve and present data) but not the whole page.

I have heard that PHP is server side and Javascript is client side. 

I currently know an OK amount of PHP and can construct sites with it.

I also remember someone once said that you can mesh PHP and Javascript together well with a language called ASP... I think, not too sure. 

ALSO, do online learning centers such as w3schools teach sufficient information to achieve what I am trying to do, or is higher study required?

Sorry if any of this doesn't make sense, It's almost 5am and my mind isn't completely on to it. 

Thanks
Ryan 

Create new topic
BuffyNZ
241 posts

Master Geek


  #401906 9-Nov-2010 05:23
Send private message

Google Web Toolkit for the win.

http://code.google.com/webtoolkit/

Mostly Java based, google will optionally host and run your app.




Recursion: See recursion.
--
“It is important not to let the perfect become the enemy of the good, even when you can agree on what perfect is. Doubly so when you can't. As unpleasant as it is to be trapped by past mistakes, you can't make any progress by being afraid of your own shadow during design.”

     --Greg Hudson, Subversion developer




freitasm
BDFL - Memuneh
79323 posts

Uber Geek

Administrator
ID Verified
Trusted
Geekzone
Lifetime subscriber

  #401923 9-Nov-2010 07:50
Send private message

ASP has nothing to do with PHP - very different technologies there.

You probably are thinking of AJAX, which allows for scripts running on your browser to access data on the server through assynchronous calls. It can be used with PHP- and ASP-based websites, or even other technologies.





Please support Geekzone by subscribing, or using one of our referral links: Quic Broadband (free setup code: R587125ERQ6VE) | Samsung | AliExpress | Wise | Sharesies | Hatch | GoodSync 


ScottStevensNZ
245 posts

Master Geek


  #401934 9-Nov-2010 08:33
Send private message

AJAX is what you are looking for. Mario is right, ASP and PHP are two different platforms




Load & Performance Tester/PHP/JSP/C/PERL/MYSQL/LoadRunner8->11/HTML/CSS/XML/XSLT/2B|!2B/Cervelo Soloist/EMC Equip4/ Samsung Galaxy S /Darkys 10.2 Extreme

Do androids dream of electric sheep?
use strict;
my $sheepCount;

Yes, they can.



reven
3743 posts

Uber Geek

Trusted

  #401949 9-Nov-2010 08:58
Send private message

depending on the complexity of the site, its not all that easy (well it is if you know what you are doing).

but basically what you want is
- jQuery and jQueryUI for the front end programming stuff (jquery is a framework for javascript which makes it about 100000000x easier to use and more useful), this would be for the Ajax so the pages dont reload, and make it interactive
- html and css for the design and structure of the site, you can achieve a lot in CSS, people often use javascript for things you should leave in CSS, if its the look/design of the site, do it in CSS if you can
- server side, php or asp.net. php is free, cheaper hosts, there lots of tutorials out for it, quite easy to learn. asp.net is free as well (there's an express version of visual studio, and there is monodevelop), but hosts are usually a couple of bucks more expensive, and its a little slower to load initially (since it basically loads the whole website into memory, php loads only the pages it needs).

learning jQuery will be a great benefit, its highly sort after in the commercial world, and its quite fun to use. it will also help your CSS skills, since the syntax is quite similar.

you should also check out lesscss.org which is basically a more advanced version of CSS, which you can compile into CSS.

Ragnor
8223 posts

Uber Geek

Trusted

  #402053 9-Nov-2010 12:35
Send private message

Silverlight ;)

ryon

18 posts

Geek


  #403015 10-Nov-2010 18:35
Send private message

reven: depending on the complexity of the site, its not all that easy (well it is if you know what you are doing).

but basically what you want is
- jQuery and jQueryUI for the front end programming stuff (jquery is a framework for javascript which makes it about 100000000x easier to use and more useful), this would be for the Ajax so the pages dont reload, and make it interactive
- html and css for the design and structure of the site, you can achieve a lot in CSS, people often use javascript for things you should leave in CSS, if its the look/design of the site, do it in CSS if you can
- server side, php or asp.net. php is free, cheaper hosts, there lots of tutorials out for it, quite easy to learn. asp.net is free as well (there's an express version of visual studio, and there is monodevelop), but hosts are usually a couple of bucks more expensive, and its a little slower to load initially (since it basically loads the whole website into memory, php loads only the pages it needs).

learning jQuery will be a great benefit, its highly sort after in the commercial world, and its quite fun to use. it will also help your CSS skills, since the syntax is quite similar.

you should also check out lesscss.org which is basically a more advanced version of CSS, which you can compile into CSS.


Cool, I had never heard of jquery before =P.
I've been watching a few tutorials and it's looking pretty nice so far.
I have access to DW CS5, is there anyway to get code hinting in it?

I am still not sure how  jquery, php, and Ajax integrate together, but i'm sure i'l find out by the end of my tutorials.

Hmm, I don't really understand what the lesscss thing does. 

nate
6473 posts

Uber Geek

Retired Mod
Trusted
Lifetime subscriber

#403075 10-Nov-2010 20:17
Send private message

ScottStevensNZ: AJAX is what you are looking for. Mario is right, ASP and PHP are two different platforms



 
 
 

Trade NZ and US shares and funds with Sharesies (affiliate link).
reven
3743 posts

Uber Geek

Trusted

  #403219 11-Nov-2010 07:35
Send private message

ryon:
reven: depending on the complexity of the site, its not all that easy (well it is if you know what you are doing).

but basically what you want is
- jQuery and jQueryUI for the front end programming stuff (jquery is a framework for javascript which makes it about 100000000x easier to use and more useful), this would be for the Ajax so the pages dont reload, and make it interactive
- html and css for the design and structure of the site, you can achieve a lot in CSS, people often use javascript for things you should leave in CSS, if its the look/design of the site, do it in CSS if you can
- server side, php or asp.net. php is free, cheaper hosts, there lots of tutorials out for it, quite easy to learn. asp.net is free as well (there's an express version of visual studio, and there is monodevelop), but hosts are usually a couple of bucks more expensive, and its a little slower to load initially (since it basically loads the whole website into memory, php loads only the pages it needs).

learning jQuery will be a great benefit, its highly sort after in the commercial world, and its quite fun to use. it will also help your CSS skills, since the syntax is quite similar.

you should also check out lesscss.org which is basically a more advanced version of CSS, which you can compile into CSS.


Cool, I had never heard of jquery before =P.
I've been watching a few tutorials and it's looking pretty nice so far.
I have access to DW CS5, is there anyway to get code hinting in it?

I am still not sure how  jquery, php, and Ajax integrate together, but i'm sure i'l find out by the end of my tutorials.

Hmm, I don't really understand what the lesscss thing does. 


im not sure if you can get code hinting in DW for jQuery, i don't use it personally.

but this how jquery, php and ajax work together 
- PHP is the server side language, it runs on the server and generates the pages that are sent to the client, eg if they are logged in it may show a "profile" link, if they aren't it may show a "login" button.  or if you are showing search results, PHP will take in some values that are posted to it, do a search in the database, and generate HTML for the results and send it to the browser.
- jQuery is client side and its an advanced javascript framework, it is all javascript.  This helps make the page interactive, eg showing modal popups, expanding/collapsing divs when a user clicks somewhere, showing a calendar input on a page etc.  It also has AJAX functions to call the server.
- AJAX is a javascript call to the server that doesn't reload the page.  eg if you use gmail when you delete a email it doesn't reload the whole page it just sends a small message to the server to delete it.  there's no need to reload the entire page.  Another example is a "Voting Poll", when a user votes, you only need a value (eg "Yes") so you only send that to the server, which is small and very quick, and the server may respond with the HTML with the poll results which would be less than 5KB (not the entire page, which could be 200KB or more), this makes your page faster and interactive.   AJAX is a javascript function, so if Javascript is disabled in the client it won't work (99%+ of people have javascript enabled, its fine to assume they have it on these days, if they have it switched off they are expecting a few things to not work).

hope that clears it up a bit 

Create new topic





News and reviews »

Gen Threat Report Reveals Rise in Crypto, Sextortion and Tech Support Scams
Posted 7-Aug-2025 13:09


Logitech G and McLaren Racing Sign New, Expanded Multi-Year Partnership
Posted 7-Aug-2025 13:00


A Third of New Zealanders Fall for Online Scams Says Trend Micro
Posted 7-Aug-2025 12:43


OPPO Releases Its Most Stylish and Compact Smartwatch Yet, the Watch X2 Mini.
Posted 7-Aug-2025 12:37


Epson Launches New High-End EH-LS9000B Home Theatre Laser Projector
Posted 7-Aug-2025 12:34


Air New Zealand Starts AI adoption with OpenAI
Posted 24-Jul-2025 16:00


eero Pro 7 Review
Posted 23-Jul-2025 12:07


BeeStation Plus Review
Posted 21-Jul-2025 14:21


eero Unveils New Wi-Fi 7 Products in New Zealand
Posted 21-Jul-2025 00:01


WiZ Introduces HDMI Sync Box and other Light Devices
Posted 20-Jul-2025 17:32


RedShield Enhances DDoS and Bot Attack Protection
Posted 20-Jul-2025 17:26


Seagate Ships 30TB Drives
Posted 17-Jul-2025 11:24


Oclean AirPump A10 Water Flosser Review
Posted 13-Jul-2025 11:05


Samsung Galaxy Z Fold7: Raising the Bar for Smartphones
Posted 10-Jul-2025 02:01


Samsung Galaxy Z Flip7 Brings New Edge-To-Edge FlexWindow
Posted 10-Jul-2025 02:01









Geekzone Live »

Try automatic live updates from Geekzone directly in your browser, without refreshing the page, with Geekzone Live now.



Are you subscribed to our RSS feed? You can download the latest headlines and summaries from our stories directly to your computer or smartphone by using a feed reader.