Jump to content

carlos1234

Members
  • Posts

    35
  • Joined

  • Last visited

    Never

Everything posted by carlos1234

  1. Not sure what you are asking. Can you rephrase the question? Carlos
  2. Thanks very much thebadbad! You is bad! . I never would have guessed that the browser would try and render a "<hello" as HTML. Just weird. But that certainly explains it. What threw me off is that some other words than "hello" added to the "<" don't cause this problem and are displayed by the browser just fine. Thanks again. Carlos
  3. Hi there, Why doesn't the following snippet output what I would expect it to output in echo case number 1? <?php echo '1. /<'."hello"."<br>"; echo "2. /<hello"."<br>"; echo "3. /\<hello"."<br>"; echo "4. /hello"."<br>"; echo "5. /<\hello"."<br>"; ?> What I want to see it output is "1. /<hello". Instead I get the following output. 1. / 2. / 3. /\ 4. /hello 5. /<\hello Why is that? Anybody? Thanks. Carlos
  4. Thanks for the additional input. Here is what PHP does in my application. I create a PHP script that produces an HTML page on a browser. That script and the text used on the page (which PHP converts to a web page) can reside either on a web server or locally on just my computer. Every page is a form. Every page has buttons that a person can click on. Whether a page has an actual data entry form on it or not...every page is nevertheless a form in the underlying HTML. When a person clicks a button to achieve a desired action...the form sends what button was pressed through the POST method to another PHP script that produces the desired action (whatever that action is). I am sure all this is old hat to you all but I wanted to lay out what I am doing more clearly. What I have been looking at is whether there is a way to avoid having to put the buttons inside an HTML form in the HTML code. I don't think there is. That is why I said that PHP is limited by the inability of HTML to connect buttons with events. It can't be done in HTML and HTML is the language that displays on the browser screen. So...PHP is limited by HTML button processing limitations. At least with respect to what I am doing. I'd also like to make my buttons selectable through hot keys. Just like on regular Microsoft Windows programs that have such easily selectable buttons all over the place (like Microsoft Word). But again...HTML is limited. Firefox has some access keys that I can assign to buttons but it's nothing like regular C++ programming that creates an actual program for use on the desktop not to mention that Firefox access keys don't work in Internet Explorer and other browsers. HTML being displayed through a browser is very limited in what it can do when compared to local running programs on the desktop. I am creating a web accessible application. To run either locally or through a web browser off a remote host. But again...I am hampered by the limits of using a browser and HTML to create a nice looking, functional, and easy to use application that runs on both the local computer and over the Internet (through a browser). I mean I can do it and am doing it but the GUI is not as functional and not as nice looking as the GUI of Microsoft Word for example. Local languages such as Visual Basic and C++ can make calls to local API's which draw nice, clean GUI elements. Elements which have all kinds of attributes I can play with to make an application great looking and very functional. PHP can't quite do that..at least very easily. Or if it can...and I have read of some libraries whereby I can make such local API calls, then I am stuck with producing an application which will only run locally and not over the web through a browser. I want my application to run both locally (when not connected to the Internet) and over the Internet from off a web host. And I don't want to create two versions of it...one for local and one for web. So I am looking for a GUI building language that I can use to create nice, clean, and very functional GUI elements running inside a browser. I'm not sure there is such a thing for all such languages would again be limited by HTML's lack of display flexibility. Again the limits are imposed on me by HTML...which was never designed to be a GUI building language. PHP is not the problem per se. It's HTML's lack of flexibility in allowing me to create buttons that can be accessed using hot keys, that can be assigned events, and so forth. I don't want to use Javascript. Javascript complicates my application even more in that Javascript does not run uniformly the same across different browsers. So not only do I have to contend with browser differences in executing CSS and HTML but now a third thing...Javascript. A bit much. But I may have to resort to using Javascript it at this point if I want to create a nicer, cleaner, and especially more functional GUI to run in a browser. I hope all that made sense. Carlos
  5. Thanks The Little Guy...but that is precisely the way I am doing it now. In order to process the button selected the "form" which has the button must be POSTed to the PHP script that determines the action to take. But...such button processing is really not what forms were created to be. I might have a page for example which has no form on it at all...well at least no visible data entry form. But it has some buttons on the page encased in form HTML. And when a user clicks on a button...the name of the button pressed is sent to the PHP script in the POST global variable. That just seems a bit clutzy and a workaround to there being no way to detect a button press other than to have that button inside a form. At least no way that I know of. In regular computer programs written in C for example one has buttons, events, and can connect those events to buttons such that when a particular button is pressed it sets off the event code associated with that button. There is no encasing the button in an HTML form to figure out which button was pressed. I am just wondering if there is some way to similarly work with buttons using PHP and HTML such that I don't have to fiddle with form processing to determine which button was pressed. Maybe PHP is not a good language to use. I don't know. I am trying to create a web application that runs in a browser and using PHP as my coding language. Maybe I need to use a different language that can interact with a browser to create an application. Any suggestions? I mean PHP is good as far as it goes but it's too tied to the limits of HTML it seems to me. Carlos
  6. I've figured out how to do this using a workaround technique but am wondering if there is a better way. Presently every page on my web application is a form. With multiple submit buttons for First, Next, Last across the top and then many different buttons vertically on the left. When a user clicks a button a specific action is taken. Sometimes the action is to process the form and sometimes it's to do something else. But creating a web application with every screen page a form...whether there is an actual data entry form there or not, so that I can process the users selection of button pressed is...well...a bit clutzy. Is there a different way to respond to button selections without having to create every screen page as a form? Any input or suggestions would be appreciated. Carlos PS. The PHP code creates the web pages for me. That is why I am asking on a PHP forum .
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.