Search:
Type: Posts; User: imran.rajani
Search:
Search took 0.01 seconds.
-
both are on same server but in different directories.
-
Hello,
For some reasons, i need to pass information between my 2 websites.
I know the only possibility is $_GET but it looks so naked to customers and very difficult if i have 25+ variables.
...
-
workable but is it the last option ?
wondering how guys were doing in old days without AJAX.
-
really great - i though of storing the value.
today i learned new thing.
any way except AJAX which i'm not familiar to store javascript value into php variable.
i can use php data function but...
-
As I know PHP date is server's whereas my need is customer's system date.
e.g. I've hosted on USA server but visitor would be from Asia.
Any solution ??
-
I don't think its client side / server side issue because php variable $curDate can store value and show on screen.
problem is can't send email.
-
Please have a look ;
<script language="javascript">
var dt = new Date();
</script>
<?php
// Storing html variables into php using post
$fname = $_POST['fullname'];
-
Hello friends,
I've used javascript to fetch visitor's system date and stored in php variable.
I can echo it on screen but can't date (can email all info except date).
On Screen printing:...
-
Great, I got your point and changed as
if(isset($_SESSION['ems_id']) == NULL) {
echo "empty";
$_SESSION['ems_id'][0] = "0";
$_SESSION['ems_amt'][0] = "0";
}
and it seems working.
-
I was trying to append some values in already exists session.
if(isset($_SESSION['ems_id']) == NULL) {
echo "empty";
$_SESSION['ems_id'] = "0";
$_SESSION['ems_amt'] = "0";
...
-
I actually want to store <option> value selected by visitor into session so i can use the same on next page.
I'm not familiar with AJAX so is there any other solution.
Thanks
-
Hi Friends,
I don't know if this request has to be posted on PHP forum or this forum is ok.
I've drop down menu.
<select name="sel_ship" id = "sel_ship" onchange="getShip();">
<option...
-
i tried either ways and its working.
i don't know why but i'll must check your given link.
-
i tried. yes, both are same.
thanks a lot buddy.
-
is addTextbox = function()
and function addTextbox()
are same?
-
I guess, i'm going to learn much difficult thing.
I've developed a calculator (honestly with the help of this forum guys).
Now i need to show history of current calculations on same page....
-
Great help.
I've learn't a lot on this forum from you guys.
Ans rating: *****
-
Hello,
Is there any way to know which button has called javascript function?
for example;
i've 4 buttons.
Plus, Minus, Divide & Multiply
and hv one function calc() to calculate.
in calc()...
-
ok i got it now.
when alert box is opened means function chk() is called.
there may be some other mistake of mine which i'll check.
Thanks a lot, Sir.
-
@ ssystems
issue # 2 is resolved with you help.
issue is #1 where i can't call function chk() into function fminus().
thanks
-
pl ignore #2.
there was my mistake in coding.
-
i tried both but not working.
1) Function into Function. (Please check minus button only)
<html>
<body>
<form name="calc_form">
<div align="center">
First Value: <input type="text"...
-
Hello,
This is my first thread.
Kindly help me on below.
1) how can i call another function a() into function b().
e.g.
function b()
{
|
|