-
Began Watching data does not display in text box
hey guys so im trying to display data into text boxes that are fetched from database according to checkbox with value id. php: <?php if(isset($_POST['edit_event']) && isset($_POST['check'])) { require "connection.php"; … -
Replied To a Post in data does not display in text box
hi nadiam, i think you are using **$rw** variable out of the scope. let me know is $rw globally defined variable in your php page? pls notice $rw = mysql_fetch_array($sql); … -
Began Watching Change input value on Checkbox change
I am using the Formidable Pro Wordpress plugin and I am trying to figure how to achieve the following: I need the users gps location in two form fields when … -
Replied To a Post in Change input value on Checkbox change
hi Douglas_2, if you want to place the coordinate values in two fields then try to change the code in the showPosition() method is enough. i mean change like from … -
Began Watching Radio Button cannot be checked
hey guys so i have a table where the `<tbody>` is populated by data in php. a row has 4 columns: name, unconfirmed, attending and unattending. the last 3 columns … -
Replied To a Post in Radio Button cannot be checked
hi nadiam , first you have to know one thing about radio buttons functionality if you want select one radio button among three or group of radio buttons then you … -
Began Watching Jquery plugin issue
Hey everyone, I have a couple of questions and I'm not sure the best way to ask them..I have a "slideshow" feature on a site I'm working on and when … -
Replied To a Post in Jquery plugin issue
hi all, i am not sure but my guess is the problem might be with jquery. it conflicts with other jquery codes in your page. so try to change the … -
Began Watching £ sign issue
Hello, I'm having some trouble with a £ sign, it's being displayed to the user as the <?> question-mark-in-a-black-diamond icon. I have an SQL Server database with a £ in … -
Replied To a Post in £ sign issue
hi BenWard , i dont know exact solution for your problem but try with this pls replace this £ symbol with '£' word at php side and send these results … -
Began Watching Data in Drop Down List Retrieve From DB in Codeigniter
In creating dropdown in my project encounters problems(errors). I'm very new to codeigniter. Please check and advise what is wrong with with my code? **Model** Public function get_region() { $return … -
Replied To a Post in Data in Drop Down List Retrieve From DB in Codeigniter
hai **kaungzaythu**, i think [in your view page] you need to change this line from this <?php echo form_dropdown('r_e_name', $return);?> to this <?php echo form_dropdown('r_e_name', $data['return']);?> because in your controller …
The End.