Search found 19 matches
- 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...
- 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
Sorry for image dimensionspytrin wrote:Dude, you could have just captured the area of the div
What are the image dimensions?
image in div is: 630x31
Thanks for reply
- 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:...
- 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...
- 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?
- 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
- 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();
- 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...
- Sun Dec 17, 2006 4:56 am
- Forum: PHP - Code
- Topic: can't get results
- Replies: 7
- Views: 926
- 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 ...
- Sat Dec 16, 2006 9:01 am
- Forum: PHP - Code
- Topic: can't get results
- Replies: 7
- Views: 926
- 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 =...
- 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
- 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
- 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...