[PHP] frame problem

2003-01-17 Thread Kiswa
What da fuck.
Been trying like forever to get a script to automaticly update the
framespage from inside one of the frames.
My goal is to reset all the frames to their original state

Can anybody help me!



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] register_globals

2003-01-28 Thread Kiswa
I know its stupid but i´ve been writing a site for a register_globals = on
enviroment
now i need to convert all the code to an off setting

the page is built by sending a whole lot off vars to diferent pages.
as you can see below the hyperlink sends the id var to the same page and
then echos the code.
can anyone help humpty dumpty?




Finansiering
Leasing
 Räntefri
avbet.
 Studentlån";
};
?>



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] Access

2003-03-07 Thread Kiswa
Hi.
Is their anyway to connect to a Access Db using only the filesystem like

$connect = odbc_connect("\Db\Webdb.mdb", "nobody", "nobody");

thus pointing directly to the file not using drivers???



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Problem

2003-03-07 Thread Kiswa
Ok here is the problem.

At home i run an Apache server with php4
and the server its supposed to be run on is NT5 and iis with php4

The site is run on an access db through ODBC. It works fine at home where i
have a system link to the db.
On the iis server the admin created the same link but the damed thing
doesent work.

any suggestions would be great.

I dont know if there is any difference.



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Screen

2003-03-07 Thread Kiswa
Hod do i get the with and hight of the users screen and then put it into a
variable?



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] ODBC Problem

2003-03-13 Thread Kiswa
Hi.
I have a problem, Been writing a site in php that uses ODBC systemlink to a
Access DB
The server is apache

The problem is that the final server is win2000 IIS and the thing doesent
work.
It seems that the odbc connect doesent output any info.
It works fine on apache
cant figure out what the difference is.




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] COM

2003-03-29 Thread Kiswa
Server Win2000 +ISS5 +PHP
Trying to get access to an access DB through COM but i wont work. there is
no results generated.
Can anyone help me
Here is the code

$rownum =0;
$conn = &ADONewConnection('access');
$conn->PConnect('webdb.mdb');
$result = &$conn->Execute('SELECT Produkt, Artikelnr, Pris, Lagerstatus,
Beskrivning, Kategori, Bild FROM Data');

  while(odbc_fetch_row($result)){
  $Produkt = odbc_result($result, Produkt);
  $Artikelnr = odbc_result($result, Artikelnr);
  $Pris = odbc_result($result, Pris);
  $Lagerstatus = odbc_result($result, Lagerstatus);
  $Beskrivning = odbc_result($result, Beskrivning);
  $Kategori = odbc_result($result, Kategori);
  $Bild = odbc_result($result, Bild);



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php