Description:
------------
On my development server I have a directory:
/var/www/app
containing the file:
menu.inc
dbsettings.inc
and the symbolic links
db_mysql.inc -> /var/export/db_mysql.inc
subdir -> /var/export/subdir
In the directory /var/export:
db_mysql.inc
In the directory...
Description:
------------
On my development server I have a directory:
/var/www/app
containing the file:
menu.inc
dbsettings.inc
and the symbolic links
db_mysql.inc -> /var/export/db_mysql.inc
subdir -> /var/export/subdir
In the directory /var/export:
db_mysql.inc
In the directory...
The whole problem is that MickeySoft is integrating IE into the operating system. Because of this they cannot just make a program that does lots of rendering. They have to use all sorts of hooks to make sure all other buggy windows programs can "Use Internet's Explorer settings".
Also it's...
Actually, IE does not do this, because IE is one crazy hack itselve.
Let me explain:
Tags are merely a definition of some style properties and DOM properties. Mozilla builds up their browser somewhat different than IE. In mozzila the stylesheet that is default to all pages is stored somewhere...
just ad a warning along you're download (use right click and save as). If there user agent opens the file without asking to save it, i consider this isn't a problem. On the other hand i see why you want to do this so i'd seriously consider using a script (PHP, JSP, ASP, ...). You can set mime...
you could try an' see if there's any `id` provided.
<iframe id=lala></iframe>
when there is, you should see if the add iframe has such a name.
If so (add has id):
iframe#lala {display:none}
if not (add hasn't but tagboard has):
iframe { display:none }
iframe#tagboardid {display:block}
in...
ok, i had somewhat like this, only after consulting some books and snippets form others:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script...
I have somewhat like the following page:
<table height=100%><tr><th>title</th></tr>
<tr><td>
<div style='overflow:auto; ...'>
PAGECONTENTS
</div>
</td>
</tr>
<tr valign=bottom><td>some copyright info here</td></tr>
</table>
What i want is that if PAGECONTENT gets too large, the div-layer...
I have major troubles using cookies on my website.
the settings in IE are the problem, it seems that first party cookies are blocked. How do I make my cookies so that they are accepted.
omg,
I never noticed some programs even had a help menu built in!!
thanx!
NOT!
My help was somehow damaged. Reinstalling didn't work either so there was the distress call for a pdf, but never mind. After reinstalling YouKnowWhichOS I succeded in finding help for my little problem...
I made a script which does the trick:
function reparse()
{
$arr=explode("&", getenv("QUERY_STRING"));
foreach ($arr as $var_val)
{
list ($var, $val)=explode("=", $var_val);
$GLOBALS[$var]=urldecode($val);
}
}
becaus I want to know how to upgrade my old scripts without adding stripslashes to much lines. If there was a way to tell PHP not to add tehm in the first place...
Look at this script. First time you use it it show a textarea. When you type something (& submit) it will show how the data will be available for your script.
When you try to enter a ", php changes it to \", for example, he said: "hello world"! will become
he said...
Hi I've got the following script:
if (!isset($a))
{
$a="hello\nworld";
header ("Location: temp.php?a=$a");
}
else echo $a;
this is the whole script but when It runs I get a Internal Server Error. Obviously because PHP.exe screws up somehow.
I figured out that the...
Thanx for this post, it already helps me, but it doesn't insert anything when nothing is selected...
That's to bad, because I want to do that too.
I tried to change the script, last lines became:
if (thetext.length){
//range.text=start+thetext+end
}
range.text=start+thetext+end;
so even when...
Insert text on cursor in a textarea
This is what i want:
I have one textarea, an textfield (<input type=text>)
and a button (non-submit).
when the button is pushed, the text in the textfield must be inserted into the textarea. But not at the and, but at the cursor position. It wouldn't be...
Insert text on cursor in a textarea
This is what i want:
I have one textarea, an textfield (<input type=text>)
and a button (non-submit).
when the button is pushed, the text in the textfield must be inserted into the textarea. But not at the and, but at the cursor position. It wouldn't be...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.