Hello...
I tried to explain the issue in an earlier post.. but was not clear enough....
So let me try again:
I think that the problem happens in Loops (while).
When I add a simple html a href (link)... then the linked word goes back to the line (as a
would do).
No idea why... tried on different websites... different servers... hell.. with different wives... still the problem follows me as a bad emoroid.
<?php
while ($whatever=mysql_fetch_array($youwant)){?>
no idea why on earth my <a href="nowhere.html">link</a> goes back to the line when I run this script!!
<?php}
?>
result :
no idea why on earth my
link
Also... if the link applies on a multiple word link.. every word goes separately to the line... example:
<?php
while ($whatever=mysql_fetch_array($youwant)){?>
no idea why on earth my <a href="nowhere.html">link goes back</a>to the line when I run this script!!
<?php}
?>
resulting :
no idea why on earth my
link
goes
back
to the line when I run the script.
Thank you for the help
Checkbox info wont include in Mailto
Hey, im new to php.Basically I have made a form to request which type of job(s) are needed, which when filled will then be sent to an email address.The problem im having is that when more than 1
TemplatePower & AJAX
Hi all,I'm currently implementing some AJAX features in my PHP-framework (which is based on TemplatePower) and I have encountered a problem:I have a block which holds a message-div. This block is
Page Reload
I am having issues getting a page to reload after I submit data to a database. This form should input data to a DB and then I want it to reload and list what is in database. I have gotten it to
url- go to webpage
i have an input text field and submit button.how do i make the url entered into the textfield go to that webpage?
Help With editting and deleting form
Hallo !!So look at this image :http://img194.imageshack.us/img194/8272/snapshot5f.png This table prints the titles of entries from a table in a database.. The code that i use for this table is this
TemplatePower & AJAX
Hi all,I'm currently implementing some AJAX features in my PHP-framework (which is based on TemplatePower) and I have encountered a problem:I have a block which holds a message-div. This block is
How to get all server headers like Live http Headers does
Hey all, like many of you I use the Firefox addon "Live http Headers". I'm trying to write a tool that will basically do the same thing, but web-based... so the user would enter a URL and
Gantt Chart Tool
Does anyone know of a good free gantt chart creator toolThanks
Echoing ASCII code
I have a php page that splits a string into chars and then echoes the ASCII code for each char. I'm trying to get it print the original value => ASCII code, splitted by :, like:A => 65:
quick basic question, hopefully not dumb
I don't know how to search for this, so forgive me if it's been covered...I often see an example like this:$a = $b . " " . $c; // concatenate strings with spaceI'm wondering if there is