-
Replied To a Post in Navigation height
I'm not sure what you're doing wrong then but line-height applied to the <ul> element affects the height of each <li> in the list. I just tried it on your … -
Began Watching Navigation height
index.php <link rel="stylesheet" href="css/styleT.css"> <!-- Resource style --> <div id="navigation"><!-- <img src="images/navigation bar.jpg" alt="nav bar"> --></div> <div id="navcontainerbar"> <ul> <li style="height: 20px;"><a href="index.php">Home</a></li> <li> <ul id="nav"> <li><a class="fly" href="#">SIP</a> <ul … -
Replied To a Post in Navigation height
you should use the line-height option on the <ul> element. Height has no effect -
Began Watching mulitple delimeters problem
So I'm trying to remove 2 brackets from lines I'm reading from a file. For some reason when I run my program the characters in between the delimeters is removed. … -
Replied To a Post in mulitple delimeters problem
Is this PHP? The function should be seperating the string into tokens based on the delimiter. In your example 'greeting pe' would become the first token of the tokenised string. … -
Began Watching Show Data from 2 different Database
Hi need some insight on how to show record from different database on the same server. i also tried using join but didnt get the correct output. im finding a … -
Replied To a Post in Show Data from 2 different Database
You aren't using an ON criteria so you're getting a CROSS JOIN of the two tables, which is a cartesian product. That's why you are seeing rows duplicated. Adding an … -
Began Watching sumbit form
check whether the answer is correct in sumbit box. I am stuck action = some website. It say sever 505 is not found. If user ebter a negative number how … -
Replied To a Post in sumbit form
A 505 server error is caused when the server refuses the HTTP version your browser is supporting. Is that the error you are getting? You also mentioned 'not found' which … -
Began Watching Exception width and height can not be <0
Dear All, To be brief, have drag and drop leading into a pdf to jpg converter. It was working, now stopped. My thoughts are either; 1) something stuck in computer … -
Replied To a Post in Exception width and height can not be <0
The code that generates that error would be more useful. Can you post that up? But it seems likely your code is trying to access something that doesn't exist as … -
Began Watching How to return 3 values / recopying array value
Hi I'm creating a program that holds three arrays one for the persons last name, one for the points scored and one for the player number, now I've got all … -
Replied To a Post in How to return 3 values / recopying array value
If your delete method is in the same class as the rest of the code you could always declare the arrays as globals, making them available to all methods. Then … -
Began Watching File upload errors
Hello I am trying to build a file upload page where a user can upload files and different messages appear on screen to the user of, for example, the name … -
Replied To a Post in File upload errors
When you're typing does intellisense provide the name of the file upload control? If it doesn'tthen something is wrong. Actually, looking at your code again I see you gave the … -
Began Watching Search from Multiple Tables PHP
I have a code: $data=$_SESSION['title']; $view=$con->query("select flower.*, mystash.* from flower,mystash where mystash.name like '%$data%' OR flower.name like '%$data%' ORDER BY name ASC"); $check=$view; if($check!="") { while($descri=mysqli_fetch_object($view)) { I am trying … -
Replied To a Post in Search from Multiple Tables PHP
You need to use a join. `select flower.*, mystash.* from flower join mystash on flower.something = mystash.something where mystash.name like '%$data%' OR flower.name like '%$data%' ORDER BY name ASC` The … -
Began Watching Fetching HTML data from a website
Hi, I have developed a application for students that retrieves data (eating menus) from a official eating website of the whole University (13 restaurants located around the city). Actually I … -
Replied To a Post in Fetching HTML data from a website
I'm assuming the app reaches out to the website directly. If you were concerned about the extra usage your app was going to inflect you could have your app call … -
Began Watching php mysql query
I have simple php code here, where basically asking to display the value of query : <?php $table = "tbl_product"; /******************MULTIPLE QUERIES*******************/ if($tbl_code==999){$condition = " WHERE (category = 'wellington') OR … -
Replied To a Post in php mysql query
How does a query not working send you to a 404 (page not found) error? Is the result being used to create a URL? An incorrect SQl statement should generate … -
Began Watching HELP PLEASE PLSEASE I HAVE AN CLASS ASSIGMENT
Generate VB 6.0 Program that will count amount of characters entered in a textbox -
Replied To a Post in HELP PLEASE PLSEASE I HAVE AN CLASS ASSIGMENT
Post up what you've done so far and we'll provide some help. But we won't just give you the answer. -
Began Watching Create a conditional with AngularJS
I have a step in my code where the application will check on the word entered by the user and compare it to the a word. My issue is that … -
Replied To a Post in Create a conditional with AngularJS
What exactly is/isn't happening as it should? I did notice, on line 12 of your controller, where you are checking for the word not matching, you have this: `else if … -
Replied To a Post in Stylising unknown values?
Have the default CSS class set as you like it to be and remove that class when you the error class $('#lblResult').removeClass('default'); That class will be used unless the label … -
Began Watching Stylising unknown values?
Hello I am attempting something like this: Protected Sub btnUpload_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnUpload.Click If FileUpload1.HasFile Then Try FileUpload1.SaveAs("C:\Uploads\" & _ FileUpload1.FileName) Label1.Text = "File … -
Replied To a Post in Stylising unknown values?
You can use jQuery on the client side to watch the label and when its text changes look to see if thw value contains "error". Based on the result, alter … -
Began Watching Change button from Submit to Submitting
I'm trying to make my button change from saying "Submit" to "Submitting" when it's clicked. But it's for a form so if something like e-mail validation fails I want it … -
Replied To a Post in Change button from Submit to Submitting
In your submit_click function use: `$("#submit").prop('value', 'submitting');` And, of course, if validation fails, use the same line again to reset the value of the button to 'submit'. -
Began Watching Insert New row in html form using php?
Dear Team I am creating a html form for data entry in mysql database and want to multiple rows inserted in one time when i filled a row then on … -
Replied To a Post in Insert New row in html form using php?
What you're really talking about is a client side event so its better done in javascript/jquery. Capture the enter key being pressed and use jquery to append the HTML for … -
Began Watching Resetting Auto Increment from PHP
Hi, I use the following code from phpmyadmin to reset one of my table's auto increment value from 1. SET @count = 0; UPDATE `mytable` SET `mytable`.`id` = @count:= @count … -
Replied To a Post in Resetting Auto Increment from PHP
If the table rows get deleted and you want to reset the primary key just use `TRUNCATE mytable;` -
Began Watching New project with images
hello guys,please i need some help .I have many folders that contains images .I have to store these folders in my database .And then use these images.Please i want an … -
Replied To a Post in New project with images
What are you exact requirements? You could store the path to the images in the database, leaving your folder set up as it is. A search of the database will … -
Began Watching update two table
Hello. I need some help to update two table.. This is my coding: $query = "UPDATE br.discharged_Date, b.book_Status SET br.patron_ID = b.patron_ID FROM borrow br INNER JOIN book b ON … -
Replied To a Post in update two table
Your're only updating one column in table br here. You can use joins like this to update 2 tables but you'd need to include the second column of the second … -
Began Watching blank white screen
a white blank space comes up when i try to access my site, and when i checked the error log on the server, i saw this: "PHP Warning: PHP Startup: … -
Replied To a Post in blank white screen
It looks like that particular .so extension file is missing. Can you browse to that directory and confirm it isn't there? -
Began Watching need here, tell me where my error is, I know there is
Write a program that will read two numbers and an integer code from the keyboard. The value of the integer code should be 1, 2, 3 or 4. If the … -
Replied To a Post in need here, tell me where my error is, I know there is
If you wanted to go with the IF statement there you would need to include each IF separately. `else if(code != 1 && code != 2 && code != 3 … -
Began Watching Why am I getting this syntex error?
Im trying to bebug some javascript in firefox and I keep getting this error. SyntaxError: syntax error data: {action: addtocart, id: <br /> the javascript is this: <script type="text/javascript"> jQuery(document).ready(function($){ … -
Replied To a Post in Why am I getting this syntex error?
Chrome tells me it is the < on line ten, where you are tring to insert some php. that line `data: {action: addtocart, id: <?php echo $pid; ?> },` If … -
Began Watching undefined index in php how to solve it
this is my code for inserting records into my form which is in html file `Inline Code Example Here` <?php error_reporting(E_ALL ^ E_DEPRECATED); $connect=mysql_connect("localhost","root","") or die(mysql_error()); $db_select=mysql_select_db("employee",$connect) or die(mysql_error()); if … -
Replied To a Post in undefined index in php how to solve it
undefined index means you tried to access an array position that didn't exist. E.g. $array[10] when $array only has five elements. Associative arrays have the same problem e.g. trying to … -
Began Watching table sort
Hello, I am trying to create a table which has a sort feature. I mean whenever someone click the table header, the table content must be sorted based on the … -
Replied To a Post in table sort
Save yourself some grief and look online for a javascript library that has that functionality. tablesorter and sorttable are 2 that came up. I haven't either. I have used tablesaw … -
Began Watching table border color
Hello, I am trying to place border colors around the whole table including inside the tables. Yet, what happen is the border only appears outside the table like a box. … -
Replied To a Post in table border color
just go with #admin { border: 1px solid #f6f6f6; } Seeing as you have already specified an ID you don't need to include the table selector. It means the CSS …
The End.