Hello all,
I recently moved to a place where broadband is unavailable. So I will need to move to dialup. I read somewhere that most serial external modems will work on Linux. Can anyone verify this claim? If so are there any good resources for setting one up?
Hello,
I am trying to insert an swf into a scrollpane. The only problem is that the inserted file is displaying on top of, and outside of, the scrollpane. Does anyone know a way to fix this problem?
Sorry, poor syntax, this is what I meant:
if ($userName == "") {
header("Location: http://www.../index.php?error=1");
}
else if ($passWord == "") {
header("Location: http://www.../index.php?error=2");
}
Try this:
if (userName == "") {
header("Location: http://www.../index.php?error=1");
else if (passWord == "") {
header("Location: http://www.../index.php?error=2");
if nothing was in $_POST then "" will be in your variables
Hello,
I am trying to create a dynamically created and named text field using the following code(MX 6.0):
----------------------------------------------
var textformat1 = new TextFormat();
textformat1.align = "left";
textformat1.wordWrap = true;
textformat1.color="0x000000";
var manstring =...
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.