How Do I Get The Result To "stick" And Add Html Tags? - Help please?

Pages: 1, 2
free web hosting

Read Latest Entries..: (Post #14) by darran on Mar 24 2008, 04:05 AM. (Line Breaks Removed)
You could use a simple if else to handle this. For e.g. if the user is entering for the first time, use the insert SQL statement, if it is for subsequent visits, you can use the update statements to actually modify the existing values in the table. But then again, you have to determine whether or not the user is entering values for the first time or not.... read more.
Read the FIRST post of this Topic. - Express your Opinion! Contribute Knowledge :-).

Open Discussion > CONTRIBUTE > Computers > Programming Languages > PHP Programming

How Do I Get The Result To "stick" And Add Html Tags? - Help please?

TheChosenDarkness
CODE
<?php
$changepage = $_REQUEST['changepage'];

echo " <tt>$changepage</tt> ";
?>

<form action="pasture.php" method="post">
<TEXTAREA class="text" name="changepage" COLS="80" ROWS="15" WRAP="OFF"></textarea>
<br>
<input type="submit" value="Change">
</form>


Okay, I need a way for any information typed in my textarea to "stick" on the page in which it "posts". Since I am creating a way for my registered users to decorate their "homepages". So any help, tutorials, etc. would be greatly appreciated. ^^


Thanks.

Reply

sonesay
CODE
<?php
$changepage = $_REQUEST['changepage'];

echo " <tt>$changepage</tt> ";
?>

<form action="pasture.php" method="post">
<TEXTAREA class="text" name="changepage" COLS="80" ROWS="15" WRAP="OFF"></textarea>
<br>
<input type="submit" value="Change">
</form>


What you can have if this is your picture.php file is some code to process the chnagepage variable. Of course it will have to be adapted if this isn't how you want it.

CODE
<?php


if(count($_POST) > 0)
{
$changepage = $_POST['changepage'];
// do any extra formatting you need to the string var $changepage here

// output it back here

echo " <tt>$changepage</tt> ";

}



?>

<form action="pasture.php" method="post">
<TEXTAREA class="text" name="changepage" COLS="80" ROWS="15" WRAP="OFF">
<?php

echo $changepage;

?>
</textarea>
<br>
<input type="submit" value="Change">
</form>


I'm not sure if thats what you were asking but if theres any mistakes just reply here. Oh by the way I would suggest you handle get and post variables explicitly since request vars are handle differently across XAMPP and trap17 servers. There may be more differences. So use $_GET or $_POST rather then $_REQUEST.

 

 

 


Reply

TheChosenDarkness
Oh it has no mistakes and it works beautifully. However, I am trying to create something that will stay on the page until the user wants to change it themselves. That is the problem I seem to be having. Everything works wonderfully, but when I hit "enter" and reload the page the information is longer there. I am trying to figure out a way to make it stay there. If that makes any sense. ^^

Reply

truefusion
The information will "stick" on the next page if you submit the information to a database, and then retrieve the information from the database and shove it into the textarea or other areas. Otherwise, closing the browser, closing the browser tab or window, moving to another page without submitting the information again, etc, will cause the information to disappear.

Reply

jlhaslip
Here is a link to the best php Author I know of.
He refers to this as a 'sticky form' and this also includes the code for the Redux method so you can have the Form and handling of the Form on a single PHP page.

redux sticky forms in php

Reply

TheChosenDarkness
I was afraid of that. I was hoping there was a quicker or easier way to make it stick. ^^;; However, that does make sense. I guess that means I must make a row under members that is for their account page. Which I call pasture. Then write a code to INSERT the information and then retrieve it. *sighs* Here I go. XD


---


Oh.. I will got take a quick look at that site from the link you provided. It might work. If it doesn't I will do it the long way around.

Reply

galexcd
Well if you really didn't want to store the data in a database you could always store it in a cookie, but if you want to do this for an account this wouldn't be the best option because your users would lose their preferences whenever they cleared out their cookies.

Reply

TheChosenDarkness
Very true. I think I might have figured out how to "insert" the data into the database, but it is going to be kind of tricky for me. Since I am still new to the PHP and MySQL language. However, I will report back if I get it to working right. =]

Reply

KansukeKojima
You could always use flat-files if your bent on not using a database... write the content directly to the files instead of storing the information on a database.... you may want to look up some information on file-writing if you do not already no about it...

http://www.w3schools.com/php/php_file.asp

using some of this in conjuntion with a form, and some includes, you should be able to accomplish what you want....

Reply

coolcat50
Well, as Kansuke was stating, you could use flat-files. Such as making a new .txt file with the name of the user and you can always include that file between a set textarea tags. When they submit, the text file is updated and you could also update a html file for the user. This can take up alot of space though.

Reply

Latest Entries

darran
You could use a simple if else to handle this.

For e.g. if the user is entering for the first time, use the insert SQL statement, if it is for subsequent visits, you can use the update statements to actually modify the existing values in the table. But then again, you have to determine whether or not the user is entering values for the first time or not.

Reply

TheChosenDarkness
CODE
<form action="pasture.php" method="post">
<textarea name="layout" id="layout" columns="40" rows="20"> </textarea>
<br>
<input type="submit" name="submit" value="Update Layout">
</form>

<?php
include ("connect.php");

$result = mysql_query("INSERT INTO members VALUES (layout);
SELECT * FROM members WHERE layout = 'layout';
UPDATE layout WHERE layout = 'layout'")
or die ('cannot select member info');

$row = mysql_fetch_array($result);

echo "ID:".$row['layout'];
?>



*sighs* I have a headache from my head meeting my desk so much. XD lol Any way.. I have something that actually works in the sense it tells me "cannot select member info". Which is a start. However, before anyone says I need to "SET" just remember this form is for my users to "DECORATE" their page. As in the code needs to be updated frequently. As in there is no EXISTING data to update until the form SUBMITS said data. *sighs* Closest thing I can think of to describe this is a blog or a personal forum that just deletes and updates the data submitted by the form each time a member decides to change something on their page.

Any way.. does anyone know where I went wrong? sleep.gif

Reply

TheChosenDarkness
Here is some screenshots of what I am trying to accomplish(off my website and a game i play):

Here is what I have:




Here is what I am trying to do:




In order to get this type of result:


Reply

darran
The database solution is the ideal one you can look to because it is the only one which stores the user's values without being changed due to any actions on the user's part. Of course, it may take a little time to load but in the long run, that is what you are trying to achieve.

Reply



Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

(Maximum characters: 10,000)
You have characters left.

Pages: 1, 2
Similar Topics

Keywords : result, stick, add, html, tags,

  1. Html Form!
    Using MySQL?! (4)
  2. File Checker-how To Check File Whith Html Through Html?
    (2)
    edit:sorry for the mistake it is php not html and its with not whith my code checking script= CODE
    <?php $file = '$CHECK'; if (file_exists($file)) {
        echo "The file $filename exists"; } else {     echo "The file $filename
    does not exist"; } ?> my question is how to check the file whith html example:on a page
    a text box is provided and a button the user writes a file name (or website) the user clicks on the
    submit button then it checks and show it (with the code above) i got the code C....
  3. Html Code Tester. Online Script
    (15)
    Yes, yes. I have another script that I have written and I am distributing. I am not entirely sure if
    this works. I have not tested it yet, but I will later and post back with a demo and fix it up.
    Current script: CODE <?php //Save this as something like htmltest.php function
    CheckForm() { $html_unsafe=$_POST['code']; //Gives us our user
    input $html_safe=str_replace("<?php"," ",$html_unsafe);
    //Starts security measures $html_safe=str_replace("?>","
    ",$html_sa....
  4. Html Site With Login
    Is it possible? (2)
    Hello. I´m building my own site and I need some help... Is it possible to use a login sistem in php
    and mysql database in a html site? ....
  5. Script To Translate Into Bbcode From Html Tags
    (1)
    I was wanting to know how to make a form like they use here for the website form. I want to be able
    to turn stuff in to bbcode. If you know how or would be willing to write the script for me could
    you email me. will@darkzone3.com . I am william to give all credit to who ever makes it. and i can
    put a link back to a site if you want. Please be specific with the topic title. "Help" is never a
    good topic title. This is explained in our forum rules. Title modified. ....
  6. <?php ?> Marking Up With Php
    How to simply add HTML tags with PHP (0)
    Just a simple function to mark your queries /smile.gif" style="vertical-align:middle" emoid=":)"
    border="0" alt="smile.gif" /> CODE <?php $uzorak = 'Hosting credit'; //use
    post to get $uzorak variable $tapeti = "Hosting credits are collected by posting at
    the forums. The hosting credits are given after your posts are filtered and depending on its size,
    you get proportional hosting credits. Once you get the required credits you can post an application
    for hosting. One of our admins will then approve your application after which you c....
  7. Help With Moving Html Form Results To Shopping Cart?
    (3)
    Hello All- So I think I'm tackling a pretty big project here and was looking for some help... I
    am fairly new to extensive coding (beyond HTML and a little bit of JavaScript) and wanted to know
    how I can recall HTML form results on the next page (in a shopping cart) with a price based on the
    choices picked in the form. It sounds complicated...look at this example: Check out this page:
    http://www.plugcomputers.com/intelprobuild.php See how when the user goes through and picks all
    their computer parts a price at the bottom shows the system price based on their sel....
  8. A Script To Close All Bbcode Tags In Php
    can you help me write one? (1)
    ok, ive got a chat that I made from scratch in flash. Its actually pretty damn cool! I just
    coded it so bbcode is allowed, but ive got a sligt problem. if sobody dosnt close a tag, then the
    tag stays active for the following messges. /sad.gif" style="vertical-align:middle" emoid=":("
    border="0" alt="sad.gif" /> , so i thout, why not add the end of every tag, at the end of every
    message example: CODE [/b][/u][/i][/url][/color]
    but then i relized, flash's html encoding is very propor, and all tags must be closed....
  9. [help]: Php To Html (static) Converter
    I need help to use PHP to HTML Conversion (3)
    Hello Guys, I want to use PHP 2 HTML Conversion for my PHP-Nuke CMS And my PHPbb or IPB Forum, but
    don't know or does't have any idea about it. If any know about it than please tell me. In
    Trap17.com forum PHP to HTML (Static) conversion example is their, you can see it on your Address
    bar, Same thing i want to use with my PHP Codes........ Thanks in advance, i am waiting for your
    suggestion....
  10. Logging Dowload Files From Your Server Onto A Html File
    (1)
    Well, i had the idea of logging the downloads from my web in a html file few weeks ago, and i solved
    it with a lil php page included in my homepage. You could name the links with a name like
    "download.php?file=filename.ext" and then, in the download.php put the next code: (well you put
    the html and head and body tags if u want, i only write the php here) CODE <? if
    (isset($_GET['file']))
    $file=$_GET['file']; //so it gets the GET data from url
    (file=filename.ext); $ip=$_SERVER[....
  11. Php And Disabling Html Tags
    how can i do this? (10)
    Hello everyone Im TRYING to make a forum and obviously for security i need to disable HTML tags
    being used in posts. i know how to use the str_replace() function but to be honest i think id have
    to do that for every single tag. I also trued using the html CODE <XMP> stuff
    </XMP> tag but i need to be able to use the new line tag to make a new line as all the
    posts are stored as HTML. if this isnt clear let me give an example: QUOTE NEW POST PAGE >
    user makes new post and posts it > PHP PROCCESSOR PAGE MAKES HTML FILE > NEW HTML FILE CONTAINI....
  12. Parsing Html As Php
    and XAMPP as the server version on Windows (7)
    On my Trap17 account here, I have an .htaccess file with the following declaration which (I think)
    forces all html files to be parsed by the PHP Parsing engine and therefore I can insert snippets of
    php scripts into html files. CODE AddType application/x-httpd-php .html .htm However, when I
    add an .htaccess file to the local directory of the version of XAMPP on my local machine, it fails.
    I have tried to add the .htaccess file to the htdocs folder and elsewhere, but it still doesn't
    work to parse html through the php parser. Any ideas on how to get these htm....
  13. Adapting Html Code Embed To Work On Phpnuke
    Help With This Html Code Pls (7)
    QUOTE how can get this html code to work on my phpnuke site? what tags would i
    have to enable in the $Allowable HTML part of my config.php file?? Edited topic title. Moved
    to Programming. ....
  14. Finding Data In Meta Tags
    using php to search Meta Tags for data (0)
    In the Head portion of an Html file, there are usually several Meta Tags that contain data about
    various things, like the tag for keywords, an Author's name or maybe a description field. Here
    are two example Meta tags: HTML meta name =" Keywords " content=" keyword1, keyword2 " />
    meta name =" Description " content=" A Description of the file's content is here " /> So,
    what I have a question about concerns checking a file to see what information is included in these
    tags and using that information as variables or content in the output of the page....
  15. Php And Asp.net Form
    server control html component (6)
    does this sort of feature can be done in php. http://www.w3schools.com/aspnet/aspnet_forms.asp or
    how and what are the differences.. thanks /huh.gif' border='0' style='vertical-align:middle'
    alt='huh.gif' /> ....
  16. Html Within Php Coding
    Is there a way to read HTML Code? (11)
    Is there a way to have PHP read a text file, which contains HTML Code, not text to display. This
    way i have a simple code in every page, linking to this text file, and then if i'm wanting to
    change the code, i only need to change the code in the text file. If that all makes sense?
    /biggrin.gif' border='0' style='vertical-align:middle' alt='biggrin.gif' /> I get the feeling it
    can be done, but the only code i have seen is one that displays the contents of the text files.....
  17. Parsing .html Pages
    (9)
    This isn't really that urgent but I was wondering, I read somewhere that you can configure you
    server to pars all html pages for php code, and I was wondering if that was true, and if trap17 has
    that feature enabled?....
  18. Best Php/html
    (2)
    I'm wondering what open source converters are out there already. I'm generating legal
    documents that require names addresses etc. I want the ability for the end user to modify the base
    document whenever they require. I plan to use the TinyMCE WYSIWYG editor to let the users edit each
    page. I will populate names and addresses dynamically based on tags in the text. Is there something
    good out there that will convert the html to pdf reliably? ....
  19. Executing Scripts Without Include() Function
    php function to execute a script w/o showing html markup (3)
    Hi guys. I have another newbish PHP question. /laugh.gif' border='0' style='vertical-align:middle'
    alt='laugh.gif' /> Today, I decided to make a new navigation bar for my site. It doesn't look
    good because I just started learning Flash today, so I was basically feeling my way around the
    application. Anyways, if you use Flash and you try to validate your site at http://w3.validator.org
    , you get a lot of errors for some weird reason. So I was thinking about separating the markup for
    embed Flash from the rest of the site's source code. The problem with that i....
  20. Html Font Tags In Php
    editing fonts using html? (11)
    I have a php script thats is fully written in php (no html at all). Now for my question, how can i
    edit the fonts? Ill make it easier to understand, the following is a data script (found the
    script): CODE <? $mese[0]="-"; $mese[1]="January";
    $mese[2]="February"; $mese[3]="March";
    $mese[4]="April"; $mese[5]="May";
    $mese[6]="June"; $mese[7]="July";
    $mese[8]="August"; $mese....
  21. Html Frames
    how do i wrap html into php (7)
    hi all what i want to know is does anybody know a way to input html code into php /blink.gif'
    border='0' style='vertical-align:middle' alt='blink.gif' /> because i want to bulid a website
    using frames but i wish for with to run using php or if theres a way of creating frames using php
    that would be better for me. if any of u people got some good advice or links please reply. Thanks
    /ph34r.gif' border='0' style='vertical-align:middle' alt='ph34r.gif' /> ....
  22. Html To Php Questions
    (3)
    Hi, I would like to know if it is safe to change HTML files to PHP files by just changing the
    dotHTML extension to dotPHP?? I tried it to a single html file because i used a php code of blog,
    and it worked. I'm using Internet Explore version 6 and it's working fine. I would like to
    know if the PHp files would work for other browsers after changing dotHTML to dotPHP extension.
    Thanks....
  23. ansi 2 html
    (1)
    well im starting to use my old ansi parser to display ansi charactors on websites as though they
    were txt.. php is neat about lett me doing that... except i forgot exactly how i did it before.. if
    anyone has any idea where to get started let me know please....

    1. Looking for result, stick, add, html, tags,

*RANDOM STUFF*





*SIMILAR VIDEOS*
Searching Video's for result, stick, add, html, tags,

*MORE FROM TRAP17.COM*
advertisement



How Do I Get The Result To "stick" And Add Html Tags? - Help please?



 

 

 

 

ADD REPLY / Got an Opinion! a humble request :-) RAPID SEARCH! Free Hosting [X]
Express your Opinions, Thoughts or Contribute your information that might help someone here.
Ask your Doubts & Queries to get answers.. "Together, We enlight each other!"
Register FREE for AD-FREE forum, Create your own topics, Ask Questions, track topics, setup subscriptions & notifications and Get a Free Website w/ Email and FTP.
500MB Space *No Ads*, CPanel, FTP, PHP, MySQL, EMails - 100% FREE