Follow Fantora on Twitter
Fantora Word of Classified Ads and Community Forum
Welcome Guest Search | Active Topics | Members | Log In | Register

validation of php value in javascript

Options
tan
Posted: Sunday, June 08, 2008 2:15:20 PM
Rank: Advanced Member
Groups: Member

Joined: 1/31/2008
Posts: 67
Points: 201
Location: Pakistan

validation of php value in javascript

Hi

I have a shopping basket that stores total items bought.
I want a simple javascript to use in a php page that says:
on click to checkout, if $total==0, display an alert that says: you can not checkout, basket is empty" or something similar.
I know a little bit about php but ever less about javascript.
Thanks for your time.
adnan
Posted: Sunday, June 08, 2008 2:16:40 PM
Rank: Advanced Member
Groups: Member

Joined: 12/3/2007
Posts: 598
Points: 1,268
Location: US

validation of php value in javascript

You need to somehow insert this PHP var into a JS var. One simple example is the fallowing:


Code:
<input type='hidden' id='total' value='<?=$total?>'>


If you don't want to add the html tag, use the fallowing code:

Code:
<script type='text/javascript'>
var total = <?=$total?>;
</script>


Now you can access the variable trough JS. The check should be something like this (for the first example):

Code:
function checkTotal()
{
  if(document.getElementById('total').value == 0)
     alert('you can not checkout, basket is empty... blah blah blah');
}


And

Code:
function checkTotal()
{
  if(window.total == 0)
     alert('you can not checkout, basket is empty... blah blah blah');
}


for the second example. Hope that helps Bye
Users browsing this topic
Guest

 Related
method to get control in efficient manner
web building primer
i need HTML code
how to convert .jpg to pdf
What is the full form of HTML ?
Free online tool to make flash flip book from pdf
CSS Tutorials
Destination India
is Dreamweaver worth buying?
need help in website designing
Forum Jump
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.

Fantora Blog | Discount Shop UK | Discount Shop USA | Discount Shop Canada | Discount Boutique France | Discount Shop Deutschland | Discount Shop Italia | Descuento Shop España

Free Classified ads, Webmaster Forum & Technology Reviews | Fantora Free Classified Ads | Buy & Sell Electronics, Mobile phones & Accessories | fantora Forums Community | Buy & Sell DVD, Games and Consols | Free eBooks & Softwares | SEO & Affiliate Marketing Discussion | Programming Language Forum (.NET, ASP, PHP, SQL) | Free Classified Ads | General Stuff (Movies, Chat, Comics) | Free Online English Movies & Reviews | Free Online Hindi Movies & Reviews | Australia & New Zealand Immigration Forum | Europe immigration forum | Canada Immigration Forum | Ireland Immigration Forum | US Immigration Forum | United Kingdom Immigration Forum

Main Forum RSS : RSS

Powered by: YAF.NET
Copyright © AI Logica All rights reserved.
This page was generated in 0.384 seconds.