Search found 171 matches

by hrubos
Mon Dec 03, 2007 7:48 am
Forum: PHP - Code
Topic: insert multi rows
Replies: 1
Views: 580

insert multi rows

I want to insert multirows by command "UPDATE", but it doesn't run. I have a table and user can insert to it c1 : <blank> c2 : <blank> c3 : <blank> The first, I insert following : c1: 1 c2: 2 c3: <blank> c4: <blank> ---------------> It returns result OK The second, in table there are c1 =1...
by hrubos
Mon Mar 19, 2007 4:06 am
Forum: UI Design/Usability
Topic: firefox and IE
Replies: 12
Views: 10792

Thank you very much your advice. and I realized that : if I use src to get style css, so in firefox myweb doesn't run, in IE oki. tak tag : <html> <head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>My web</title><link href="../template/css/ha....
by hrubos
Sun Mar 18, 2007 1:36 pm
Forum: UI Design/Usability
Topic: firefox and IE
Replies: 12
Views: 10792

for the code html, do you know what is tool for debugging?
I think maybe I have error in code html
Now I need it.

My code, now I still not upload to server because I don't chose a server for my web.
by hrubos
Sat Mar 17, 2007 1:59 pm
Forum: UI Design/Usability
Topic: firefox and IE
Replies: 12
Views: 10792

while I repaired, I realized that maybe problem in this :
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

what do you think ?
by hrubos
Sat Mar 17, 2007 12:18 pm
Forum: PHP - Code
Topic: about browser
Replies: 11
Views: 3840

oki i will try, thank everybody
by hrubos
Sat Mar 17, 2007 12:25 am
Forum: UI Design/Usability
Topic: firefox and IE
Replies: 12
Views: 10792

Write better code. edit: okay, that was a bit harsh, sorry. But seriously, what can you expect anyone to say without providing more information? Isn't that what we usually ask in your threads anyways? I'm sorry if I have done some thing wrong!!! if code doesn't run in firefox, only because of bad c...
by hrubos
Fri Mar 16, 2007 5:06 pm
Forum: UI Design/Usability
Topic: firefox and IE
Replies: 12
Views: 10792

firefox and IE

How to solve if with the same code, but in mozila(fire fox) interface has mistake, but internet explorer doesn't have???
by hrubos
Fri Mar 16, 2007 4:45 pm
Forum: PHP - Code
Topic: about browser
Replies: 11
Views: 3840

I have done a information system for resrevation.So while user book, they can't click back button in a toolbar of browser. So Should you show me detaily how to do???

about AJAX?
by hrubos
Wed Mar 14, 2007 5:38 am
Forum: PHP - Code
Topic: multiple paging
Replies: 3
Views: 756

you can use it, it run well <?php db_connect(); if (isset($_GET['pageno'])) { $pageno = $_GET['pageno']; } else { $pageno = 1; } $query = "SELECT id FROM student s,school h WHERE s.id=h.id "; $result = mysql_query($query)or die(mysql_error); $numrows = mysql_numrows($result); $rows_per_pag...
by hrubos
Wed Mar 14, 2007 5:22 am
Forum: PHP - Code
Topic: parametr
Replies: 1
Views: 521

parametr

How to do if I back a previous page, I will have a parametr,which was chosen by me. example here : file1.php echo "<form action='file2.php' method='POST'>"; for($i=0;$i<rows;$i++) echo "<td><input type='radio' name='id' value='$id'>$id</td>"; echo "<tr><td><input type='submi...
by hrubos
Tue Mar 13, 2007 2:20 pm
Forum: PHP - Code
Topic: pagination
Replies: 2
Views: 1568

thankyou, i have solved it. I have a question, this code which i will posted then,is for only the easy query $limit = 'LIMIT ' .($pageno - 1) * $rows_per_page .',' .$rows_per_page; $query = "SELECT * FROM student $limit "; if I have a query like this, how to do with $limit ??? SELECT s.id_...
by hrubos
Tue Mar 13, 2007 1:51 pm
Forum: PHP - Code
Topic: pagination
Replies: 2
Views: 1568

pagination

How to do to output table with default row by pagination. I have done it but it'snot exactly <?php db_connect(); if (isset($_GET['pageno'])) { $pageno = $_GET['pageno']; } else { $pageno = 1; } $query = "SELECT rc_student FROM student "; $result = mysql_query($query)or die(mysql_error); $n...
by hrubos
Mon Mar 12, 2007 1:25 am
Forum: PHP - Code
Topic: multiple language
Replies: 8
Views: 1508

I have done it and it runs.This is code, in which someone is interested. if (isset($_GET['language'])) { $language = $_GET['language']; } else { $language = "ko"; } setLanguage($language, ""); Then call a text from file.txt by command echo . Example : echo TIT_HOME; You will have...
by hrubos
Sun Mar 11, 2007 7:47 am
Forum: PHP - Code
Topic: multiple language
Replies: 8
Views: 1508

I would like ask a question
I have a file en_test.txt : TIT_REGISTER##Registration
then in my file index.php

Code: Select all

setLanguage();
..
... 

echo "<a href='register.php'>TIT_REGISTER</a>"
I did it but it can't be outputted
by hrubos
Sat Mar 10, 2007 3:31 pm
Forum: PHP - Code
Topic: multiple language
Replies: 8
Views: 1508

now, example I have find index.php and so how I do to use this function.

May be this is a stupid question, but in fact I tried many times, but not runs