I run this stuff using my local web server xampp in localhost.
flashery
Posts
-
I want to clear something about PHP and HTML (newbie) -
I want to clear something about PHP and HTML (newbie)Wow your great. I change the initial value of submit to false. I also change the "if" statement to == but the form still showing. Thanks for your help.
-
I want to clear something about PHP and HTML (newbie)If you run this in a browser you can see the form. I want to clarify how could that be happen the form is inside the if statement. Is there any way you can hide html code in PHP. The html code will be executed if the "if" statement is true.
<form method="post" action=" . "> <label for="subject">Subject:</label> <input type="text" id="subject" name="subject" value="" /> <label for="message\_body">Say something:</label> <textarea id="message\_body" name="message\_body"></textarea> <input type="submit" id="submit" name="submit" value="Send Email" /> </form>;
-
How to match the height of my sidebar to my content area?Thanks for your helps but I get a good way to do it in this link http://aquoid.com/forum/viewtopic.php?f=4&t=800&p=3896#p3896.
-
How to match the height of my sidebar to my content area?Hello anybody knows how to match the height of my sidebar area to my content area? I just want my sidebar to be the same height as my content area(the posting area). I want it so that my sidebar background will extend all the way down matching the height of the content area, even the sidebar is not having a widget in it. Here is the site http://bloomtheflowercompany.yenius.com/ the green background should extend all the way down even if it has no widget. Can I do it in CSS or I need a JavaScript in it?? Any help appreciated thanks...
-
Newbie Question: JQuery Accordion Menu Widget is overlapped by the other widget below it.I manage to fix it yesterday thanks for your help I really appreciated it.
-
Newbie Question: JQuery Accordion Menu Widget is overlapped by the other widget below it.Hello thanks for your reply. Did you hover on it? In my browser IE and Firefox it is currently overlapped under by the other widget below it. It should pull down together with its parent div I mean the blue background, when you hover on it. But its expand on its own. Did you see that?
-
Newbie Question: JQuery Accordion Menu Widget is overlapped by the other widget below it.Sorry if I posted this question in this forum but its really the forum that answer all my question every time I had. I also don't know which section on this forum should I post it but its more on CSS I decided to post it here. :) :) I am fixing this menu from the past developer of this site. However, I don't have any idea how did he installed this. I have tried deleting and activating the plug in again and again but it doesn't work perfectly. Currently JQuery Accordion Menu Widget is overlapped by the other widget below it. Here's the link of the site: http://primarycareadvisory.yenius.com/ Any idea on how to fix it?
-
How disable refresh when enter key pressed in the form input text?Thanks man but this code is really to advance for me> I'm just learning JavaScript. But thanks anyway.. How about this code
function disableRefresh(e){
if(e.keyCode == 13){
return false;//some code follow here }
}
this makes the following code after
return false;
execute without refreshing the page and it work for me. My html textbox is look like this.
/form>
Correct me if I'm wrong cause this is the best and simple way for me to do this.
-
How disable refresh when enter key pressed in the form input text?I cant type anything on my textbox.. Maybe its because of this onkeypress="javascript:return false;"
-
How disable refresh when enter key pressed in the form input text?Anybody knows how disable refresh when enter key pressed in the form input text in JavaScript? I have this JavaScript code
// JavaScript Document
function runScript(e){
if(e.keyCode == 13){
var div = document.createElement("div");
div.setAttribute("class", "resultItem");
var parentDiv = document.getElementById("result");
var input = document.getElementById("txtBox");
div.innerHTML = input.value;
parentDiv.appendChild(div);
}
}My HTML code:
Untitled Document
Website URL:
URL List
My problem is when everytime I hit enter on my keyboard it refresh the page. I want it in every enter the value in the text box will be displayed below the URL List. Any help will be appreciated
-
How can I disable my Window 7 Desktop in JavaWow let me try this solution.
-
How can I disable my Window 7 Desktop in JavaOk... I am really thankful of all your help guys. GOD BLESS YOU ALL.
-
How can I disable my Window 7 Desktop in JavaSo as a conclusion I really need to convert in C++? I just want to sure before giving it a go..
-
How can I disable my Window 7 Desktop in JavaYeah that's what I am afraid of using just pop up dialog. I think it much better if I am going to make full screen window with matching some keyboard disabled such as alt+tab, alt+escape and any other keyboard shortcut that will switch window to window. I think it is much better? How is it?
-
How can I disable my Window 7 Desktop in JavaYeah that's what I am afraid of using just pop up dialog. I think it much better if I am going to make full screen window with matching some keyboard disabled such as alt+tab, alt+escape and any other keyboard shortcut that will switch window to window. I think it is much better? How was it?
-
How can I disable my Window 7 Desktop in JavaYeah that's right but you can access some window which is not its parent. What I want is a pop up dialog that will surely disabled all the access of the desktop except the pop up dialog itself. Can I do it in java?
-
How can I disable my Window 7 Desktop in JavaYes that's it thanks I will convert to C++ now. Thanks for all your help guys..
-
How can I disable my Window 7 Desktop in JavaIn my apps every minute the Timer will check the Admin specified time and it will stop if it's equal. It will also disabled all the active apps in my desktop except this Timer itself. For the reason that they are restricted to use the PC if their specified time is over. How was that? Do you guys have a better idea now?
-
How can I disable my Window 7 Desktop in JavaThe purpose is the user will not allowed to do anything on desktop. Only the user allowed to access the desktop if the timer start again. Any other idea?