473,670 Members | 2,656 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Help please

Two things I am not sure about, and would appreciate an answer to.

1) This may be simple. When creating a form to insert data into a table, I
seem to loose all the returns when data is inputted. I use the following
script:

page1.php:
<form action="page2.p hp">
<textarea name="textbox"> </textarea>
<input type="submit">
</form>

page2.php:
<?php
include("dblogi n.php"); // Loads database password, username and opens
database line.
$query = "INSERT INTO table1 (column1) VALUES ('$textbox')";
$result = mysql_query($qu ery);
?>

All the carrige returns dissappear, meaning i have to use <br> or the <p>
tags, but this is not possible for users of a site to have to type in <br>
instead of return. Any ideas?

2) Even easier. Does anyone know where there is a good tutorial for creating
..png images automatically from data.

Many thanks in advance
Shaun
http://www.shaund.com - My Homepage
http://www.green-cabbage.co.uk - My Plymouth Argyle Site (UK Soccer Team)
Jul 17 '05 #1
3 3664
You may need to catch the variable from the textbox if your php.ini config
has Global variable disabled which is the best option for security issues.

<?php
$textbox = $_POST["textbox"];
include("dblogi n.php"); // Loads database password, username and opens
database line.
$query = "INSERT INTO table1 (column1) VALUES ('$textbox')";
$result = mysql_query($qu ery);
?>

2nd: you have to replace \n (return) by <br> with the function

str_replace("\n ", "<br>", $textarea);

"Shaun Demellweek" <sh***@shaund.c om> a écrit dans le message de
news:bk******** **@newsg2.svr.p ol.co.uk...
Two things I am not sure about, and would appreciate an answer to.

1) This may be simple. When creating a form to insert data into a table, I
seem to loose all the returns when data is inputted. I use the following
script:

page1.php:
<form action="page2.p hp">
<textarea name="textbox"> </textarea>
<input type="submit">
</form>

page2.php:
<?php
include("dblogi n.php"); // Loads database password, username and opens
database line.
$query = "INSERT INTO table1 (column1) VALUES ('$textbox')";
$result = mysql_query($qu ery);
?>

All the carrige returns dissappear, meaning i have to use <br> or the <p>
tags, but this is not possible for users of a site to have to type in <br>
instead of return. Any ideas?

2) Even easier. Does anyone know where there is a good tutorial for creating .png images automatically from data.

Many thanks in advance
Shaun
http://www.shaund.com - My Homepage
http://www.green-cabbage.co.uk - My Plymouth Argyle Site (UK Soccer Team)

Jul 17 '05 #2
I noticed that Message-ID: <8A************ *******@news20. bellglobal.com>
from Savut contained the following:
2nd: you have to replace \n (return) by <br> with the function

str_replace("\ n", "<br>", $textarea);


or use the new line to <br> function

nltobr($textare a);

--
Geoff Berrow
It's only Usenet, no one dies.
My opinions, not the committee's, mine.
Simple RFDs http://www.ckdog.co.uk/rfdmaker/
Jul 17 '05 #3
sam
"Shaun Demellweek" <sh***@shaund.c om> wrote in message
news:bk******** **@newsg2.svr.p ol.co.uk...
Two things I am not sure about, and would appreciate an answer to.

1) This may be simple. When creating a form to insert data into a table, I
seem to loose all the returns when data is inputted. I use the following
script:

page1.php:
<form action="page2.p hp">
<textarea name="textbox"> </textarea>
<input type="submit">
</form>

page2.php:
<?php
include("dblogi n.php"); // Loads database password, username and opens
database line.
$query = "INSERT INTO table1 (column1) VALUES ('$textbox')";
$result = mysql_query($qu ery);
?>

All the carrige returns dissappear, meaning i have to use <br> or the <p>
tags, but this is not possible for users of a site to have to type in <br>
instead of return. Any ideas?

$textbox = nl2br($textbox) ;

This way you replace carrige returns with <br>'s
2) Even easier. Does anyone know where there is a good tutorial for creating .png images automatically from data.

Many thanks in advance
Shaun
http://www.shaund.com - My Homepage
http://www.green-cabbage.co.uk - My Plymouth Argyle Site (UK Soccer Team)

Jul 17 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
3263
by: laurie | last post by:
Hi all, I'm trying to help out a friend who has inherited a client with a PHP shopping cart application. Neither of us know PHP, but I've been muddling my way through, trying to get these old scripts working on a new server with the most recent version of PHP. I've pretty much taken care of all the various errors that were popping up. Most only pointed out out non-fatal undefined or assumed variables. I've been able to cure most of...
1
1944
by: the_proud_family | last post by:
HELP ME PLEASE!! my email is the_proud_family@yahoo.com I can't get the ball to go up right side and then I need it to turn around and keep turning until velocity=0 I have been at it for the past 2 weeks now i give up and call for help. Please if anyone can gide me through i will be so grateful!! I have pasted my code below
0
1695
by: Kurt Watson | last post by:
I’m having a different kind of problem with Hotmail when I sign in it says, "Web Browser Software Limitations Your Current Software Will Limit Your Ability to Use Hotmail You are using a web browser that Hotmail does not support. If you continue to use your current browser software we cannot guarantee that Hotmail will work correctly for you". Please help, this is very annoying. I have been searching for help on
12
2118
by: Christo | last post by:
borland c++ 5.01 character constant must be one or two characters long get this when compiling my first c++ program can anyone out there help? it is highlighting this line as the problem cout << "Please Enter First number: ";
7
3598
by: x muzuo | last post by:
Hi guys, I have got a prob of javascript form validation which just doesnt work with my ASP code. Can any one help me out please. Here is the code: {////<<head> <title>IIBO Submit Page</title> </head> <style type="text/css">
5
2985
by: Craig Keightley | last post by:
Please help, i have attached my page which worksin IE but i cannnot get the drop down menu to fucntion in firefox. Any one have any ideas why? Many Thanks Craig <<<<<<<<<<<<<<CODE>>>>>>>>>>>>>>>> <html>
17
2026
by: JT | last post by:
Help me the following C++ question: Write a program to help a local bookshop automate its billing system. The program should do the following: (a)Let the user enter the ISBN, the system will trace the title and price of the book automatically. The system should check whether the book is in the stock or not. If it is not, please let the user to enter again. (b)Allow a customer to buy more than one item from the bookshop.
7
3279
by: tyler_durden | last post by:
thanks a lot for all your help..I'm really appreciated... with all the help I've been getting in forums I've been able to continue my program and it's almost done, but I'm having a big problem that I believe if it's solved, the remaining stuff is easy... my full program until now is here: http://www.geocities.com/tom4_h4wk/progmail.zip the problem is the segmentation fault when main trys to run leficheiro.c.... the *.c2 files are the...
23
3263
by: Jason | last post by:
Hi, I was wondering if any could point me to an example or give me ideas on how to dynamically create a form based on a database table? So, I would have a table designed to tell my application to create certain textboxes, labels, and combo boxes? Any ideas would be appreciated. Thanks
2
1541
by: =?Utf-8?B?U2NvdHRSYWREZXY=?= | last post by:
I'm creating a doc project for my c# program. I've done this before but this time sonething is wrong. I build my doc project and is succeeds but when I open the help file, there is no documentation there. I enabled XML documentation file under build properties and have recompiled my program but still I have nothing. What am I doing wrong? -- -ScottRadDev
0
8901
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8814
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8591
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8660
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7415
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6213
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4390
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2799
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
2041
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.