Ok, here comes a long one.
A co-worker has just had a CD-RW from AOPEN installed model CW5323 and it came with Nero Express 5.5.10.56
Heres the problem, since installing this burner, the pc (dell optiplex 270) Win xp pro service pack 1 has been booting to a screen that says drive 2 not...
You can also go Start > Run type msconfig > enter
This brings up the config utility
Under "boot.ini" tab there should be a button to either search for or validate operating systems. Basically it will remove the "ghost" os you have written to the MBR because of the dual xp install.
Ok thanks. So basically when i boot up it will give me a choice of operating systems. I would blow away windows except there are some games i like to play that im unsure will work with linux. I would think it would be lilo or at least give you the choice.
Ive already downloaded the live cd, booted and worked fine, now i have the boot iso to dl and install SUSE 9.1 pro, since the home doesnt have hardly any dev tools. I am trying to do this on a laptop. Case in point, i know generally what i am doing, unfortunately, i have yet to find a dual boot...
Nevermind I fixed it!
After coding php for weeks, i figured out that you cant immediately close else statements in javascript
<script language=javascript>
function checkform()
{
if (document.createuser.Name.value=="")
{
alert ("Name Field is Blank");
}
else...
I wrote a function to make sure that all fields are set before the information is submitted. Unfortunately the submit button does nothing and ie says there are errors on the page.
<script language=javascript>
function checkform()
{
if (document.createuser.Name.value=="")
{
alert ("Name...
try moving the \ over one. You can make php recognize "" as a symbol rather than syntax with \ in FRONT of the symbol. ie.
"\"" the second is now just a simple " and not part of missing syntax.
I feel dumb
I had my code right except for this part. here is the fixed version, compare and youll understand that filters were needed in the first sql statement.
<?php
include 'include/include_common.php';
?>
<html>
<head>
<title><?=$company?> - <?=$appName?></title>
</head>
<body...
Check your local bookstore. =)
If you want some quick and dirty web tutorials try
www.w3schools.com
www.devshed.com
www.php.net
www.webmonkey.com
or
www.scripts.com
The code
$pagenext = ++$page;
works the same as
$pagenext = $page + 1;
Provdided that you are incrementing the pages by 1. However both options leave you with a last page that displays nothing. there has to be a problem with the logic of this part of the code. I get a previous button...
I found the same code... mine works but with a completely different bug. The page increases by 1 however it also adds a last ghost page. So if i display 10 entries per page and have 17 entries, it says i have 2 pages yet the next button lets me go to page 3. Anyway, my code works and is fully...
When you say you click an icon, right click that and go to properties. Is it the programs icon set on the desktop or is it a shortcut. If it is a shortcut, does it point to the right .exe file??
Whats the age of the accounts? Is it working on the newest or the oldest? Have you ever ran any spyware programs ie (SpyBot Search and Destroy or Ad-Aware)? Have you tried clearing all browser cach, cookies, temporary internet files? Are there any sites you can access from the broken accounts...
Im trying to paginate some data. The first part shows up fine but when i click the next or numbered buttons the data disappears. It's as if the links are causing the script to run the $query again. Here's the code. Maybe i missed something elementary again. You'd think a simple thing like...
Thanks KarverR, never even though of that. I was trying to do an ORDER BY ??? AND ???. Anyway, it worked.
$result = mysql_query("SELECT * FROM $dbtable ORDER BY date ASC ,name",$authentication);
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.