Search found 19 matches

by SuperFly
Sat Nov 29, 2008 5:25 am
Forum: HTML, CSS and other UI Design Technologies
Topic: IE7/FF3 simple div content displayed different
Replies: 7
Views: 4642

Re: IE7/FF3 simple div content displayed different

Thanks for your help, I have manage to solve previous problem, but now I have this one: <style> html{     background-color: #A9A9A9; }   #bannerchild{     position:absolute;     top:95px;     left:138px;     border-left: 1px solid #000;     border-right: 1px solid #000;     width:920px; }     #index...
by SuperFly
Fri Nov 28, 2008 11:23 am
Forum: HTML, CSS and other UI Design Technologies
Topic: IE7/FF3 simple div content displayed different
Replies: 7
Views: 4642

Re: IE7/FF3 simple div content displayed different

pytrin wrote:Dude, you could have just captured the area of the div ;)

What are the image dimensions?
Sorry for image dimensions :)
image in div is: 630x31

Thanks for reply ;)
by SuperFly
Fri Nov 28, 2008 11:04 am
Forum: HTML, CSS and other UI Design Technologies
Topic: IE7/FF3 simple div content displayed different
Replies: 7
Views: 4642

IE7/FF3 simple div content displayed different

Hi everyone, I have one probably stupid problem that I don't know how to solve. In attachment you can see how is same simple code displayed differently in IE7 AND FF3. Here is the code: CSS Code: <style> html{     background-color: #A9A9A9; } .cclogo{     height:31px;     position:absolute;     top:...
by SuperFly
Thu Feb 28, 2008 1:21 am
Forum: PHP - Code
Topic: PHP session problem on IIS server
Replies: 7
Views: 313

Re: PHP session problem on IIS server

There is nothing strange, but please if you see something strange please refer. Here is my session settings got from phpinfo: Session Support enabled Registered save handlers files user Registered serializer handlers php php_binary wddx Directive Local Value Master Value session.auto_start Off Off s...
by SuperFly
Wed Feb 27, 2008 12:06 pm
Forum: PHP - Code
Topic: PHP session problem on IIS server
Replies: 7
Views: 313

Re: PHP session problem

ok, I didn't mention that this code is on IIS server, when I test same code on Apache it works without problems, like it should, but on IIS sessions doesen't work, is there something in IIS configuration which could cause this?
by SuperFly
Wed Feb 27, 2008 11:14 am
Forum: PHP - Code
Topic: PHP session problem on IIS server
Replies: 7
Views: 313

Re: PHP session problem

It looks like I didn't connect everything right here. Looking for Bug and thanks for reply
by SuperFly
Wed Feb 27, 2008 10:35 am
Forum: PHP - Code
Topic: PHP session problem on IIS server
Replies: 7
Views: 313

Re: PHP session problem

Yes it is, I have one file common.inc.php which I include on every page and in that file is session_start();
by SuperFly
Wed Feb 27, 2008 10:26 am
Forum: PHP - Code
Topic: PHP session problem on IIS server
Replies: 7
Views: 313

PHP session problem on IIS server

Hi Everyone, I have something strange here. I have one login page let's say : /index.php, when user fill out webform and hit submit I check for his details and put info in session, after that I redirect user to agent/index.php and when I check for session there it doesen't exist. In other words when...
by SuperFly
Sun Dec 17, 2006 4:56 am
Forum: PHP - Code
Topic: can't get results
Replies: 7
Views: 926

Thanks for reply,
you was great help
:)
by SuperFly
Sat Dec 16, 2006 9:21 am
Forum: PHP - Code
Topic: can't get results
Replies: 7
Views: 926

because: I get details from 2 different tables ($comm, $trans) which are not linked and then I need to show that details in list with perpage, so if I use: function my_compare($a, $b) { return $a['UTS'] - $b['UTS']; } uasort($data, 'my_compare'); how then I can create perpage? If you or anyone else ...
by SuperFly
Sat Dec 16, 2006 9:01 am
Forum: PHP - Code
Topic: can't get results
Replies: 7
Views: 926

Thanks for reply,
I have PHP 4.4.1 version and your function works only with PHP5, any other idea?
by SuperFly
Sat Dec 16, 2006 7:24 am
Forum: PHP - Code
Topic: can't get results
Replies: 7
Views: 926

can't get results

Hi everyone, I have code looks like this: //start with extarcion $comm = payment_getCommission($userid, $date); $trans = payment_getTransaction($userid, $date); //create one array with all details $data = array(); $data = array_merge($comm, $trans); //crate tmp table // var_dump($data); exit; $sql =...
by SuperFly
Tue Sep 05, 2006 4:38 am
Forum: PHP - Code
Topic: [SOLVED]upload file then send it to another over FTP
Replies: 2
Views: 446

I have found solution: all I had to do is to replace this -> $file["tmp_name"] with this -> $tmp_file_name in ftp_put();

Thanks any way
by SuperFly
Tue Sep 05, 2006 3:59 am
Forum: PHP - Code
Topic: [SOLVED]upload file then send it to another over FTP
Replies: 2
Views: 446

ok lett me re-create this: <?php //path related define("ROOT", str_replace("\\", "/", realpath(dirname(__FILE__)."/../")."/")); define("URL", "http://".$_SERVER["HTTP_HOST"] .(($_SERVER["DOCUMENT_ROOT"]{strlen(...
by SuperFly
Tue Sep 05, 2006 2:46 am
Forum: PHP - Code
Topic: [SOLVED]upload file then send it to another over FTP
Replies: 2
Views: 446

[SOLVED]upload file then send it to another over FTP

Hi everyone, I have done some search&browse on forum but didn't find what I'm looking for. I have 2 files, 1 is foe handling uploaded file(move_uploaded_file()) and in second is function wich should uploaded file transfer to other FTP location so I will have files on both servers, here is the co...