just a clarification that the value in the url parameter has to be a relative path, not an absolute one as I have listed so something like:
../Viewlets/Basic.viewlet/Basic.exe
since the page calling the viewlet is in the same parent directory (Private) but different folder called pages
Arif
Hi guys,
I hope everyone is doing well. I haven't posted in awhile because I had started medical school but I had to come home for a family emergency and have a temporary job. Anyway I have a question regarding applets using html. I'm posting the code below and I'll explain the problem after...
Hi guys,
I have a multi-page form and as the user proceeds through each step, the variables from the previous page(s) are carried over into the next page. The final page inserts all values into a mysql database. However, I can't seem to get the apostrophes to work. It seems that thru each step...
I have a question in getting values from two tables and checking to see whether they are equal.
The first table is called "A".
The second table is called "B".
Users get assigned a group_id number associated with their user_id in table "B". If they have been...
thanks for all your help guys, however i'm still having trouble...
on another page i have this code
<?
include "config.inc";
$sql = "SELECT * FROM information";
$result = mysql_query($sql);
$row = mysql_fetch_array($result);
extract($row);
$referer =...
thanks DR
the following is the code to one of the pages on the site i'm working on:
<?
include "config.inc";
$emailcheck = $email;
$sql = "SELECT * FROM information";
$result = mysql_query($sql);
$row = mysql_fetch_array($result);
extract($row);
if ($email == $emailcheck)...
Hi guys,
I have a page in which I'm checking to see if the user came through the referring page or not.
$HTTP_REFERER = 'http://test.philipslighting.com/nam/events/lightfair/request.php';
$referer = $HTTP_REFERER;
if (!($referer)) {
header ("Location: emailcheck.php");
exit;
}...
I have a statement:
String strName = request.getParameter("gameName");
gameName is the name of the input box on the previous page
the sql query I have is:
<%
strQuery = "SELECT * FROM videogames WHERE " + strName + "LIKE '%VName%'";
rs =...
yes i kind of figured that sleipnir
however everything works until the SQL2 statements
in the echo statement that follows that call to the database, the part when the U_email is being incorporated into the sentence doesn't seem to work at all...even though i have checked that U_email field...
can someone please check this code and tell me if it's ok?
basically it's checking whether to send an email or not...
after the user is done taking all 9 quizzes, an email is sent listing the user's scores...however, in my code, the email is never sent, it's not even accessing the tables for...
<?$Age = 1?>;
the ; should be after 1
<?$Age = 1; ?>
<input type="hidden" name="test" value="<? print $Age; ?>">
that should work
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.