Explore topic-wise InterviewSolutions in .

This section includes InterviewSolutions, each offering curated multiple-choice questions to sharpen your knowledge and support exam preparation. Choose a topic below to get started.

1251.

Solve : php and mysql less than date?

Answer»

i really need this problem SOLVE ASAP, how can i select  all dates from the DATA base less than or equal the given date FOR EXAMPLE THE GIVEN DATE IS SEP 22 2009 THEN,

FROM JAN 1 2009 UP TO SEP 22 2009 WOULD BE THE RESULT.

THANKZZZZZZZZHere is ONE possible solution:

CODE: [Select]SELECT *
FROM Store_Information
WHERE Date BETWEEN 'Jan-01-2008' AND 'Oct-04-2009'
If you had a table called Store_Information.
Is that what you want?thank you for your time but i got it in other way

1252.

Solve : *SOLVED* Text appearing differently in FF/IE?

Answer»

Hi

Well, IE fails.

In Firefox this is how a section of my site looks:



And in IE:



What the *censored* is that all about?

This is the CSS I'm using:

Code: [Select]h2{
color:#999999;
padding: 0 0 0 0;
line-height: 0.0em;
margin-bottom: 0.0em;
font-size: 0.9em;
text-align: left;
margin-top: 1.2em;
padding-bottom: 0.0px;
padding-right: 1.0px;
padding-left: 6.0px;
padding-top: 0.0px;
letter-spacing: 1;}

h3{
color:#999999;
line-height: 1px;
margin-top: 7px;
margin-bottom: 0px;
font-size: 0.9em;
text-align: left;
padding-bottom: 0.0px;
padding-right: 1.0px;
padding-left: 6.0px;
padding-top: 0.0px;
letter-spacing: 1;}
And the HTML:

Code: [Select]<h2>2277-6811-1118<font color="#FFFFFF"> Abyss</font></h2><br />
<h3>1891-1336-6995<font color="#FFFFFF"> Bash</font></h3><br />
I've TRIED with and

with similar RESULTS, I'm fairly NEW to all this and could really do with some help if someone would be so kind?

Thanks very much in advance for your time it's ok, think I found a wayA few problems:

  • If you're using CSS, you shouldn't really be using <font color="#FFFFFF">...
  • line-height: 0.0em; <-- this may cause you problems
  • don't specify padding: 0 0 0 0;
    AND
    padding-bottom: 0.0px;
    padding-right: 1.0px; <-- contradictory
    padding-left: 6.0px; <-- contradictory
    padding-top: 0.0px;
  • letter-spacing: 1; <-- why use this?  I see what you're doing, but it would make more sense to tabulate this, if it's data.

I suspect the fault lay in your HTML and the way IE deals with PROPERTY inheritance.  The Web Developer plugin for Firefox has a very USEFUL debugging console that can indicate problems in CSS by the way.

1253.

Solve : incoding Problem!?

Answer» HI,i am Stive,i TRY to make my own web page,but i didnt know where can i place the java script to my HTML CODE,PLEASE help me !!!I need procedure!!!tanks! Post the code you have - the JS and HTML.
1254.

Solve : Facebook- How do I removed the "share" option from photos and videos?

Answer»

Hi,
I have searched through the entire of privacy settings and account settings and my photo and video settings, I can't find AWAY to remove the share option that other people can click on to post my photos or video to their pages?? I have my setting to friends only but family MEMBERS keep sharing my videos of my daughter with people I do not know and I can't figure out how to remove the option?? Any help is greatly appreciated!!On your homepage click on PHOTOS
Click on album privacy
Click on Who can see this and select from DROPDOWN box
Save Settings

1255.

Solve : Need help on broken code????

Answer»

I'm having trouble with some coding for a website.  After correcting a misspelled word, my website lost a lot of TEXT.  I've searched and searched, but can not find anything ANYWHERE that could have caused this in my CODE

Is there anyone that could POSSIBLY look at this and see if they see the problem.  I could REALLY use a second pair of eyes.

Thanks!
MichelleSure - post a link to your web page and we can take a look.

1256.

Solve : PHP Scrapper?

Answer»

Hello,

I am new to this forum and also relativly new to PHP and I am trying to make a scrapper that would extract and show on my website the following :

Code: [Select]<td>&nbsp;</td><td>Version</td><td>Date</td></tr>
<tr><th><a href="http://www.avast.com/fre/updates.html">VPS</a></th><td>090926-0</td><td><a href="http://www.avast.com/fre/vps_history.html">26.9.2009</a></td></tr>
<tr><td id="box_dotted_line" colspan="3">&nbsp;</td></tr>
<tr><th>Pro</th><td>4.8.1356</td><td><a href="http://www.avast.com/fre/avast-4-home_pro-revision-history.html">25.9.2009</a></td></tr>
<tr><th>Server</th><td>4.8.1091</td><td><a class="a_lang_ENG" href="http://www.avast.com/fre/avast-4-server-revision-history.html">13.5.2009</a></td></tr>
<tr><th>ADNM</th><td>4.8.975</td><td><a class="a_lang_ENG" href="http://www.avast.com/fre/adnm-revision-history.html" title="ADNM - Revision history">13.5.2009</a></td>
In order to acheive that I have found this article that describes what I am trying to do : http://www.hiteshagrawal.com/php/html-scrapper-in-php

However I can't seem to get what I want, can anyone please out to me how I should go about in order to acheive this ?

Thanks

Al968 Quote

However I can't seem to get what I want, can anyone please out to me how I should go about in order to acheive this ?
What have you tried doing?

Is this on your computer, or is it online?I tried to include the table which the INFORMATION I need is in use include'the site's adress\filename'  but that didn't work, SORRY I should have pointed out that I would like to put the php SCRIPT on my website (hence online)

Al968 Quote
I tried to include the table which the information I need is in use include'the site's adress\filename'  but that didn't work,
Sorry, I don't understand. Have you got any code already?

Quote
I would like to put the php script on my website (hence online)
Okay, but are you testing it on your PC?In order to test it I upload the file each time to my web server
Unfortunatly no I don't have anymore code as I think I deleted it after seeing that it didn't work (I know that was stupid of me), but anyhow would the article I spotted be able to do that or would you recommand an other method ?

Thanks

Al968That article you read would do the trick. You need to make sure your Webhost has CURL installed and CONFIGURED on the server, though. That might be one of the reasons it didn't work for you. I'm sure if you ask them, they'll be able to tell you.
1257.

Solve : Favicon is not showing..?

Answer» I have tried tons of THINGS! I've even added most of the favicon links!!! None of them work!

Code: [Select]<link rel="icon" type="image/vnd.microsoft.icon" href="http://herbertsworld.com/favicon.ico">
<link rel="icon" type="image/gif" href="http://herbertsworld.com/favicon.gif">
<link rel="icon" type="image/jpeg" href="http://herbertsworld.com/favicon.jpg">
<link rel="apple-touch-icon" href="http://en.wikipedia.org/favicon.ico" />
<link rel="shortcut icon" href="favicon.ico" />
<LINK REL="SHORTCUT ICON" HREF="http://herbertsworld.com/favicon.ico">
<link rel="icon" type="image/png" href="http://herbertsworld.com/favicon.png">
See if this helps: http://www.favicongenerator.com/

Where are you hosting your site?  What browser are you using?If the favicon's file suffix is .ico, then the type ATTRIBUTE is image/x-icon.

Most sites use this:
Code: [Select]<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
But as SOYBEAN said, browser would be handy to know.Getting a browser to load an amended favicon into its cache - that's the tricky part!kapac didnt work Quote from: soybean on June 19, 2009, 01:08:54 PM
Where are you hosting your site?  What browser are you using?
Adding Icon to your page is very easy... here is the code that I added to my webpage

You can check it out on 

Try to observe
If Subdomain

The icon on IE7 doesn't SHOW but on Firefox it is perfectly okay.

Link removed

If its the main domain

Icon shows in IE7 as well as Firefox
Link removed


This could be considered SPAM since it was already suggested.
1258.

Solve : PHP include() Not Working [PHP Level: Newbie] [SOLVED]?

Answer»

First off, I'm a newbie to making anything from scratch - I've been brainwashed with CMSs. Please be patient with me.
Next, I'm a big fan of the strict doctype. Please don't recommend hacks that will invalidate a webpage using the strict doctype.
Finally, I am trying to make this website from scratch. Please don't re-post the code with all the corrections made - I WOULD much rather you described the problem. If credit is an issue, please let me know!
Now that's established, the question!
--
According to W3Schools, the following include should work.

index.html
Code: [Select]    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-type" content="text/html;charset=UTF-8" />
<link rel="stylesheet" type="text/css" href="style.css" />
<title>EchoLynx.com</title>
</head>
<body>
<?php require("header.php"); ?>
<div class="maintext"></div>
<?php require("footer.php"); ?>
</body>
</html>

header.php
Code: [Select]   
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-type" content="text/html;charset=UTF-8" />
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<div class="header"><img src="http://www.echolynx.com/main/images/header.gif" alt="Header Image"/> </div>
        <div class="menubar">

<ul>
<li><a href="about.html">About</a></li>
<li><a href="ham.html">Amateur Radio</a></li>
<li><a href="clstr.html">Computer Cluster</a></li
</ul>
</div>
</body>
</html>

The footer is similar to header; contains a copyright statement.

For whatever reason, the source for index.html ends up rendered as follows.
Code: [Select]    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-type" content="text/html;charset=UTF-8" />
<link rel="stylesheet" type="text/css" href="style.css" />
<title>EchoLynx.com</title>
</head>
<body>
<?php require("header.php"); ?>

<div class="maintext"></div>
<?php require("footer.php"); ?>
</body>
</html>
Nothing but whitespace is displayed in IE or FireFox.

Any ideas as to what could be wrong?

Thanks in advance,
IanI can not give you help on PHP.
But I have some questions.
What have you got, so far, that works good?
Why do you need to have an include?

From My own past experience as a commercial programmer, I only use includes when I am very confident that my code is working well, I use the includes to make my work load easier on a very a large project. Otherwise, I do not use includes on anything that I have trouble with.

When I try to learn a new coding tool, I break everything down into the smallest possible objects and still have the thing work. Also, when working with server side tools, I tried to do it on a local server in the same room with me until I am sure the code is good. Bur is this what you are doing?

I avoid doing anything from scratch until I am confident that I know all the basics and have a measure of success understanding how others do coding teaks. The only time I do any PHP code is when I need to modify somebody 's code because it has a feature That I need to change.

I understand you desire to do it from scratch. Yes, is a noble ambition. The best I can recommend is break you code down into small bits that can be tested one step at a time.

Another thing. I see you have an index.html that has php code. Thar is not allowed, I think, on my server. If I have an index.html, it must be only  html. To get the thing going in PHP I had to rename the index.htnml file and let the browser load the index.php file. My server is running Apache on Linux and that is just the way it works.

Hope this is of some help.Geek-9am, you are obviously very experienced in your profession, and I appreciate your advice immensely.

The purpose of using the include was ease of maintenance of my website. I had built the basic framework (which wasn't much in the first place) and then attempted to use includes, as they were (and I guess still are) new to me. (Unfortunately, I learned this technique the hard way, and I'm sure you know what I mean.)

As for testing on a separate server, if find it's easier to simply create a subdirectory/domain one the same server/hosting account rather than trying to match the configurations on your live server with your local test server. REGARDLESS, I hadn't been doing EITHER, which was part of my problem. The other part was I'd tried switching the header file to .php, but hadn't THOUGHT to switch the index file. Even if I had, unless I'd uploaded it to my server I wouldn't have seen the change, as I'm simply viewing local files in my browser.

So that solved my problem - index.html had to be index.php, and the file had to be hosted in Apache for it to work. Thanks again for your help. Quote from: EchoLynx on September 25, 2009, 06:39:22 PM

So that solved my problem - index.html had to be index.php, and the file had to be hosted in Apache for it to work. Thanks again for your help.
Just another note: this might not work on all servers.

Code: [Select]<?php require("header.php"); ?>can sometime errors if the file can't be found.

So, to SOLVE this (presuming "header.php" is in the same directory as the file where this line is located), use this:
Code: [Select]<?php require(dirname(__FILE__) . "/header.php"); ?> Quote
"/header.php"
should be:
Quote
"./header.php"

./ means the same directory
/ is the root

This rule even applies to Windows servers, not just Linux.

We had this discussion somewhere else recently. Quote
./ means the same directory
/ is the root
Errr, it's the other way around. Anyway, this has nothing to do with the include or require functions.

Code: [Select]<?php require(dirname(__FILE__) . "header.php"); ?>This would give an error, saying that "home\site1\public_html\folderheader.php" could not be found. The dirname function gives the name of the directory without a \ after the directory name.
1259.

Solve : what does this mean? /safety_wrapper (carets removed)?

Answer»

This appears on certain blogs I post on when I have used the right-hand caret (over the period) to create cutesy text.  I don't know what it means, and when I copy & paste it into other docs it often disappears everything after it including itself.

The term is: .

I have done searches for the term but have not FOUND it anywhere.  Anybody know anything?  Thanks.

I'll try to produce it here, for example if I wanted to emphasize POOF with carets I would WRITE it as >POOF<

Well that didn't work.  is the full expression & should have appeared after >POOF< on its own but didn't.  I guess it depends on the host.  Still I'd like to know what it means and what it is supposed to do.

if I wanted to emphasize POOF with carets I would write it as >POOF<


those aren't carets,- "^" is a caret.

<> are angle brackets.

some forums/blog comments allow HTML instead of BBCode. the SafetyWrapper STUFF is probably some FORM of protection from people using unrecognized Tags (such as, for example, a "

1260.

Solve : Could someone please tell me if you can see the pictures??

Answer»

How are you able to have all those browsers on a computer? You would have to have alot of memory?
Thank you for the link for the IE thing, but mom still doesn't want me to do that ONE either.
Due to so many problems with software causing problems and conflicts too with other stuff too, is a big reason my mom doesn't want all these things. We have had these problems so many times on our computers.
Another thing I just thought of, there is a Windows XP Professional and Home Edition. We have Home Edition. Anyways, wouldn't a professional website designer need the Professional version? A professional web designer can use a home edition just fine. Professional edition of windows xp does not contain anything that would give much advantage to the web designer in terms of making websites.

Professional version of XP just has more security and some other features (that you would typically want to have in a business environment, but you aren't worried too much about as an average home user)  the two basic things it has that Home edition doesn't is EFS (encrypting File system) and Compression at the file system level, both features of NTFS. There are probably a few other things here and there, but that is what it boils down to.The other differences are at that level:  things like how an XP Pro admin can work with workstations on a local area network, and security issues.

As far as applications and programs, an XP Home user can still perform professional functions, so you're a professional compared to many!   I hope this is ok for me to put a picture up of a room I made. Just wanted to show one of the things I like to design things. Since I like creating things. This is on a site I use Webkinz. Allows me to make webpages, rooms for our pets that we bought, plus it allows us to create videos, stories, so many things it lets us do.
This is a picture of the movie theater I created.

[attachment deleted by admin]Very nice.  GOOD to see creativity.   I can see everything on your website perfectly. And I'm using Mozilla Firefox 3.5
However in IE7 the picture of the Desktop+Monitor+Speakers does not show.

I will be testing Amy's page also in Opera, Chrome, Safari, and Netscape as soon as i get time...Google Chrome is fine, I just tried it out. I expect Safari to be fine as well, since Chrome is based on webkit, the engine that is powering Safari  Just wanted to thank you all very much for checking out my pages since I don't have all those other browsers.
Also, I may have found out something and wondering if maybe this could be what the problem is. If Angelfire does anything like what Geocities does, maybe could be the problem.
Here is what I'm talking about, not sure if I understand it though, but from another site I have been on someone said something about the codes Geocities does- Some of those errors is because Geocities server writes code to your pages which you have no control over.


I have a question about that, how are codes ever suppose to be 100% right if this is what is happening?

There's really nothing you can do about code added by free services such as Geocities.  If you want to get entirely away from that, you need to pay for a hosting service.  Many inexpensive ones are available.  The cost could as low as $4/mo. or possible less. 

And, to reiterate another point, web pages created with Word will always have some extra, unneeded coding added.  If some class on creating web pages advised students to use Word, it is because the course provider is TRYING make web page creation easy for persons who don't want to take time to really learn how to code HTML.  This is most likely to happen where the course is geared for students do not intend to become professional website developers but are persons interested in a personal or small business website of their own.  A college curriculum designed to TEACH students to become professional web developers will not have students using Word to create their pages.Since I can't and don't work due to my health and disabilities, I don't have the money to pay for a hosting site.

Just thought of something else to ask real quick to make sure I understand about the differences free hosting. Just this past August before my health got worse and problems with my computer kept crashing too when trying to help out my sister and her husband doing a site for free for his new job, but they are now having to pay someone to do it, anyways, someone told me this-
Looks and seems to work ok except for the coding errors that Geocities server writes to your pages. You would be so much better off using a free hosting service like http://FreeWebs.com/ instead.

Now wouldn't free webs be considered a free hosting site?
Also, here is the url to my sister and her husband site, maybe someone can help me understand if their site is a free hosting or how can you tell? I thought they were paying for theirs, but maybe not.
http://www.astresurfacing.com/

Of course we are paying for the internet, DSL internet. I'm also paying on Webkinz, so would that be considered not a free host? www.webkinz.com is where it is, and yes I did have to pay for an account there. Had to buy a pet and then register everything. Can't just go and create a free account or anything.
but in any case, if your website is working as intended, that is the important thing, even with the extra codes or whatever that geocities or any other free website hosting service may add to your pages since you couldn't do anything about them anyway.

And I see that those free hosting websites may add that code to display the advertisements (for those hosting sites that have those)I'm beginning to feel even more stupid now. Maybe I don't know as much as I thought. 
I guess since I'm not doing it for a job or anything like that doesn't really matter.
Sorry if I'm asking too many questions or anything, maybe some of my questions will help people who want to do for their job.

I would like to understand why things seem to be working out and showing up if things are wrong. Which actually,  I started creating my first site before even taking the classes I've taken.
I'll try and explain a bit more what all we did in the classes I've taken- Word wasn't the only thing we used though. Used other things too- Powerpoint, Excel, Frontpage, so many other things too and learned about dynamic and STATIC webpages too. Here is one of the pages http://itech.pjc.edu/llemley/cgs1570w/resources.htm on the class and maybe someone can explain, why on this part of the site for the class, why does it talk about all it does.
We learned everything from adding doing links, font colors, background colors, paragraphs, heading, adding the pictures, text, everything we learned to do. Learned how to do animated stuff too. Used templates in the class.
The only other thing I can think of, are you trying to say that Word doesn't have a way to view the codes or that it doesn't allow you to save a page with .htm or .html extensions? If so, then I don't understand why it does allow me to save it with those extensions and it does have a code source viewer, and does do css too.


Thanks,
Amy
Quote

Also, here is the url to my sister and her husband site, maybe someone can help me understand if their site is a free hosting or how can you tell? I thought they were paying for theirs, but maybe not.
http://www.astresurfacing.com/
It isn't free. You can tell because the website is just one domain (the domain is "astresurfacing.com"), whereas a free website would be "astresurfacing.freeweb.com". See the difference?

Just to make sure I understand the url/domain thing,
Are you trying to say if it has freeweb in the address then it is a free site?
Also, everything I keep reading about domains, see one of my email addresses is my username I type in and then bellsouth.net for the rest of it. The thing I'm trying to understand, in the class I took, it had an Email address typed out and showed us all the parts, and the thing that comes after the is the domain.
See I wouldn't be able to login to the internet or do emails or anything if we weren't paying for DSL internet service. We are logged in all the time too.

Also, at my sites I have on like Geocities, Angelfire, myspace, facebook, etc.. they don't have the word freeweb in the url. Like on Geocities, here is one of my sites http://www.geocities.com/jttfan20
Why doesn't it have the freewebs thing in it? Just in case you are wondering what the jttfan20 is, it's my username I picked since it's a Jtt site I created.

1261.

Solve : Changing image width?

Answer»

Hey, I'm trying to think up a way to change the width of an image depending on a NUMBER which will be entered by the user. I created a quick example of what I am looking for in Microsoft Visual Basic (which I accessed through MSWord 2003) and it is attached. Just enter a number in the text box and hit the command button next to it, then the top button's width will change accordingly.

[attachment deleted by admin]Is this not programming? Quote from: kpac on September 23, 2009, 09:47:11 AM

Is this not programming?
No, it's web design. I just showed an example of what I meant in MSVB. I'm sorry I didn't add that part in before, the page refreshed after switching tabs, so I lost all I wrote.  What language are you using? JavaScript? PHP? Quote from: kpac on September 24, 2009, 02:02:38 PM
What language are you using? JavaScript? PHP?
Well I don't KNOW PHP at all, but any language is appreciated if it can be done (and I can use it).Likely JavaScript if you want it on a web site.
Here is one place to look:
http://javascript.internet.com/
Even if you don't find anything, the girl is cute
Quote from: Geek-9pm on September 24, 2009, 05:29:51 PM
Even if you don't find anything, the girl is cute

WHAT?
Quote from: Helpmeh on September 24, 2009, 07:58:33 PM
WHAT?
Eh, never mind.

Err, try this for size:

CODE: [Select]<html>
<head>
  <title>JS Test</title>
</head>

<body>
  <script type="text/javascript">
    var size = prompt("PLEASE enter a size for the image.","45");
    if (size != null && size != "")
    {
      document.write("<img src='path/to/image' width=' + size + ' />");
    }
  </script>
</body>
</html>
I can't test this right now, but can it be changed after the image has been displayed once, or is it a one-time thing per load?JavaScript can reload an image without reloading the who page.
1262.

Solve : Dreamweaver cs3 spry centering problem?

Answer»

Hello,

I'm using Dreamweaver CS3 and am TRYING to center my spry menu bar.  I've TRIED to adjust the margin and PADDING but it's still not centering.  Any useful advice would be great.

http://antiquecarclub.org

ThanksI FIGURED it out.  Thx ANYWAY.

1263.

Solve : Trying to install Joomla (localhost related)?

Answer»

I'm trying to install Joomla to get my website up and running, but its giving me some trouble.

First I installed wampserver so I could run Joomla on that, but when I am running wampserver (and it's fully connected) and I open any browser and try and go to my localhost it either times out or says it cannot display the webpage. This is occuring on both FIREFOX and IE.

Can anyone help me? I'm lost on the whole Joomla installation, but once I've got it installed I'm confident that I'll be able to get into it.

The step-by-step guide I'm using to install Joomla is below, and as you can see I didn't get too far before I ran into the localhost problem.

http://www.compassdesigns.net/tutorials/120-how-to-install-joomla-15.html


Thanks so much for any help you can give me.

(And no, I'm not running skype which I KNOW runs on the same port as wampserver)Is Wamp installed correctly?
Have you installed Joomla on the server correctly?
Have you PUT Joomla in the www or htdocs folder?Just try it with your firewall temporarily disabled...The firewall wouldn't affect localhost would it? It shouldn't by default anyway.Since the OP hasn't told us what firewall is installed or how it's configured, we cannot make that assumption.  We also don't know if the OP is attempting to connect via the loopback or via the NIC - depends on how host file is configured.  So many questions!  It's just easier to ask for the firewall to be disabled temporarily.  I installed the WAMP several times... But i dont encountered any problems at all...If "http://localhost" give you an error, it is most likely the VISTA host file error. Open notepad as an administrator, file:open C:\WINDOWS\System32\drivers\etc\hosts "Hosts" is the file.

You'll see at the bottom this entry:"  ::1             localhost    "

Just above it you'll need to add:  "127.0.0.1   localhost"


I have no idea why Vista uses ::1, but many programs don't know what it MEANS. That should fix the problem, I did that, and now Apache works for me.

1264.

Solve : Looping $_POST?

Answer»

foreach($_POST as $key => $value) {
$$key = $value;
}


I'm NEWBIE in PHP. I'm wondering why there are two "$$" BESIDE the key?..  What is the purpose of that?.. TNX..

1265.

Solve : Show Visits counter?

Answer»

Hi

Does anyone know how to insert a "SHOW Visits" counter onto one of my web pages.  I have DESIGNED this in Publisher.  I don't know the code to use to do this.  Does anyone know the code?

Thanks.http://www.easycounter.com/
http://www.website-hit-counters.com/Thanks KPac

Will VISIT these sites.

CheersNo problem.

You MIGHT also go down the coding route.
http://www.w3schools.com/asp/showasp.asp?filename=demo_hitcounter - in ASP

Something similar would be easy enough to MAKE in PHP.
Statcounter is also very good and has lots of features. www.statcounter.com

Cameron GrayThanks Cameron for website, will check it out.

Cheers

1266.

Solve : [PHP] 'forward' value to other php file?

Answer»

I'm not sure exactly what this is called, but when I explain it should be come clear. I have an index.php file, which the user INPUTS several VALUES on.

How do i get my values to 'forward' to another php file based in what radio they picked.

Here is the Index.php file, proceeded by the upload.php

Index.php
Code: [Select]<link rel="stylesheet" type="text/css" href="style.css" media="screen" />



<center>

<font size=5>The Notebook</font>



<div id="nav">

<br />
<form method="post" action="./upload.php" enctype="multipart/form-data">

<label for="file">Upload:</label> <input type="file" name="userfile" id="file">
<input type='radio' name='class' VALUE='Science'>Science
<input type='radio' name='class' value='Mathematics'>Mathematics
<input type='radio' name='class' value='Languages'>Languages
<input type='radio' name='class' value='Fine Arts'>Fine Arts
<button>Upload</button>
</form>

<br />

</div>



<div id="nav">


</div>


Here is the upload.php file:
Code: [Select]<?php
// Configuration - Your Options

$allowed_filetypes = array('.txt','.doc','.xls','.pdf'); // These will be the types of file that will pass the validation.

$max_filesize = 524288; // Maximum filesize in BYTES (currently 0.5MB).

$upload_path = './notes/'; // The place the files will be uploaded to (currently a 'files' directory).

$filename = $_FILES['userfile']['name']; // Get the name of the file (including file extension).

$ext = substr($filename, strpos($filename,'.'), strlen($filename)-1); // Get the extension from the filename.

echo "Class is: " . $_FILES['class'] . "<br />";
// Check if the filetype is allowed, if not DIE and inform the user.

if(!in_array($ext,$allowed_filetypes))

die('The file you attempted to upload is not allowed.');

// Now check the filesize, if it is too large then DIE and inform the user.

if(filesize($_FILES['userfile']['tmp_name']) > $max_filesize)

die('The file you attempted to upload is too large.');

// Check if we can upload to the specified path, if not DIE and inform the user.

if(!is_writable($upload_path))

die('You cannot upload to the specified directory, please CHMOD it to 777.');

// Upload the file to your specified path.

if(move_uploaded_file($_FILES['userfile']['tmp_name'],$upload_path . $filename))

echo 'Your file upload was successful, view the file <a href="' . $upload_path . $filename . '" TITLE="Your File">here</a>'; // It worked.

else

echo 'There was an error during the file upload.&#160; Please try again.'; // It failed :(.

?>

The vars i want to forward are in the first on index.php

You can see the current file at :

http://textingwhile.free-site-host.com/NoteServ/Index.php
http://textingwhile.free-site-host.com/NoteServ/upload.php
See here: http://www.w3schools.com/php/php_file_upload.aspRadio buttons are POSTED as their name.

so to get the value of the radio button that was selected you would do something LIKE this:

Code: [Select]$usrRadio = $_POST['class'];

if ($usrRadio == 'Science')
{
      //Do Sciency code
}
if ($usrRadio == 'Mathematics')
{
      //Do mathematicsy code
}

Etc.  Get it?

Hope that helps.

-rockOn upload.php put

Code: [Select]$userfile = isset($_POST['userfile']) ? $_POST['userfile'] : '';
if you ever want to pass variables using "get" juct change the post to _GET .


Is this what you wanted?

1267.

Solve : Publishing a web page?

Answer»

Okay, thanks for that KPac.

The information about the web testing servers is great - I'll try it before publishing web pages.

Many thanks. QUOTE from: kpac on July 14, 2009, 08:37:22 AM

XAMPP and WAMP are testing servers. If you create Webpages, it's good to test them out before you upload them and everyone sees them. These programs will simulate a Web server on your own PC.
But, installing XAMPP and WAMP or some other web server emulator on your PC isn't the only way to preview your web pages.  Just create your page(s), open your browser, select File | Open File from the main menu, locate the file, and open it.  In the web address box of your browser, you'll something like: file:///C:/.../index.html.  Thanks Soybean.  I have tested my webpages by using Web Page Preview in Publisher.  It seems to act like it is on the web and all things are funcioning.  However, I don't know if it will work on a web hosting server.  So may try some of the software that KPac has suggested.

Thanks again.Well, again, you can also preview your pages in your browser.  Your browser will recognize any file with a .htm or .html file extension.  Try it with Notepad.  Just create a simple page.  It could be:



My test page

This is just a test page.



Just copy the code above into a Notepad window, save it as testpage.html, and then open it with your browser.  When saving file, MAKE sure it doesn't get saved as testpage.txt or testpage.txt.html.  In other words, when you save the file in Notepad, you need to type the full name, including the file extenstion; otherwise, Notepad will save it as testpage.txt.Hi Soybean

I tried your method and it worked perfectly, thanks so much.  I've noticed that my pictures come up with a red X in a box instead of showing the pictures.  I think this is standard until it is really published on a website, do you think so???

Anyway many thanks for all your help.

Cheers Quote from: Skydove on July 14, 2009, 06:41:29 PM
I've noticed that my pictures come up with a red x in a box instead of showing the pictures.  I think this is standard until it is really published on a website, do you think so???
No, your pictures should appear even when viewing pages in this manner, i.e. from your hard drive. LET's try another test.  To make it simple, PUT your image in the same folder as your html file.  Then, add a line to the test page I previously posted, like this:




My test page

This is just a test page.
<img src="xxxxx.gif">



Where you see the xxxxx, put the name of your image. If the file type for your image is .jpg or .png, rather than .gif, then change that also.  Be sure to have quotation marks around the image name. Quote from: soybean on July 14, 2009, 07:16:08 PM
No, your pictures should appear even when viewing pages in this manner, i.e. from your hard drive. Let's try another test.  To make it simple, put your image in the same folder as your html file.  Then, add a line to the test page I previously posted, like this:


<html>
<head>
<title>My test page</title>
</head>
<body>This is just a test page.
<img src="xxxxx.gif">
</body>
</html>

Where you see the xxxxx, put the name of your image. If the file type for your image is .jpg or .png, rather than .gif, then change that also.  Be sure to have quotation marks around the image name.

Hi Soybean

I tried the above and it worked.  I also re-saved my pictures in Publisher and then opened the Publisher file on the internet and they both work.  Thanks so much as this has saved me a lot of time.

Cheers
1268.

Solve : HTML images?

Answer»

I can't get my images to DISPLAY in my HTML files. It displays the alternate text and a small icon of an image tile. I have the complete path defined in my HTML pages, starting with the C:/Users/ivanspires/Documents/spiresHTML/images/ivan1.jpg and it still does not display anything except the alternate text and an image icon. On my web host the images displays fine with a path leading to the folder named images which contains the image of ivan1.jpg I can't seem to figure this out, I have also checked the advanced browser options and made sure the "Show images" box is checked. When I right click on the image and select "Show image" it still does not display the image. I am at my wits length and see no resolution to this problem, can you help me??? Quote

I can't get my images to display in my HTML files. It displays the alternate text and a small icon of an image tile.
You mean when TRYING to view your pages offline, from your hard drive, right?  I see you have a folder named images on both your host server and your hard drive.  Right?  Do you have your HTML files on your hard drive in spiresHTML?  If so, then the path in the code for displaying the image could be the same whether viewing your page online or offline.  Agree?    Some code to work on would be nice......The path should be the same but it still doesn't work! I have changed the path, MOVED pictures into the spiresHTML folder and it still doesn't work! It works at the web site I have my HTML pages posted to, but not on my computer at home! Quote from: kpac on July 11, 2009, 04:47:45 AM
Some code to work on would be nice......

Or a link at least....When you want to insert images into an HTML file, you should ALWAYS use the relative path to the image.

Assume you have the following directory: C:\DOCS\HTML
In this folder you store all your HTML files. Under the folder HTML you have a subfolder called IMG: C:\DOCS\HTML\IMG.
This is the folder where all the images are stored.

Now when you want to display an image on your webpage, you should never do this:



Instead use it like this:



Why is this so important you might think?

Well it's simple. When you upload your webpage (html plus images) to a webserver, there is no C:\DOCS\HTML\IMG folder.
It works great when you create webpages on your local computer, but it goes wrong when you upload the webpage to a webserver. Quote from: Astoria on July 12, 2009, 11:41:15 AM
When you want to insert images into an HTML file, you should always use the relative path to the image.

Assume you have the following directory: C:\DOCS\HTML
In this folder you store all your HTML files. Under the folder HTML you have a subfolder called IMG: C:\DOCS\HTML\IMG.
This is the folder where all the images are stored.

Now when you want to display an image on your webpage, you should never do this:

<img src="c:/docs/html/img/image.jpg">

Instead use it like this:

<img src="img/images.jpg">

Why is this so important you might think?

Well it's simple. When you upload your webpage (html plus images) to a webserver, there is no C:\DOCS\HTML\IMG folder.
It works great when you create webpages on your local computer, but it goes wrong when you upload the webpage to a webserver.
And, in this example, he needs to be sure he has a folder named img on the web server, also.  Doesn't matter whether you name your folder img or images or something else, just be sure the folder name for your images is the same on both your PC and the web server.    Alright, It sounds like you have the same problem my Aunt did, as it cannot find the path.


I would recommend instead of pathing it from your PC pictures, upload it to a site that holds on to them, such as Http://www.tinypic.com/ , or Photobucket, but I don't use that often.

This resolved the problem for my Aunt,


Regards,
1269.

Solve : broken internal link?

Answer»

Hi!

I have an error message on the page that I am creating that says that I have a broken internal link.  When I CLICK on help it says that my page should properly link to every other page on my site.  But, I only have one page on my site!  So, how do I clear this up?  There is ALSO a message that I have no EXTERNAL links.  So, how does one clear this up when their site is only one page?  Quote from: Gawoman on August 30, 2009, 06:45:15 PM

When I click on help...
Help in what?  Your web browser?  A WYSIWYG editor?  Quote from: soybean on August 30, 2009, 10:45:26 PM
Help in what?  Your web browser?  A WYSIWYG editor? 

Yes, it's a WYSIWYG editor.  Quote
Yes, it's a WYSIWYG editor. 
Just one page? Edit the page in notepad and look over the HTML. Find a link that does not look right. Fix it or remove it.About your external link issue: it's TELLING you that no other sites link to your page. To fix the warning you should link to your site from ANOTHER page.
1270.

Solve : Do I need to know what I'm doing??

Answer»

I found the book, it CALLED instant html.  Covers CSS an FRAMES an such. Quote from: squall_01 on JULY 14, 2009, 06:17:19 PM

Covers CSS an Frames an such.

Heh, great combination you got there. Quote from: squall_01 on July 14, 2009, 06:17:19 PM
I found the book, it called instant html.  Covers CSS an Frames an such.
Umm, found it where?   I got a copy of it, but I just said ollies.Come on squall_01, put some logic into the sequence of POSTS in the thread.  You mentioned ollies back before I mentioned Amazon.com and Barnes & Noble.  So, when you first posted again, after my posts, you merely said you found a book, without saying where.  So, in a logical sequence of posts, your implied source of a book would have been the most recently mentioned source, which were the sources I had mentioned, not yours. Oh, forget it.  I know this is way beyond your ability to comprehend. 

Oh, and by the way, I gather ollies means Ollie’s Bargain Outlet.  You should state the whole name for such an unknown website. To follow up on Soybean's post, you simply said you had the book. How does that help us, or the OP?

I say for the HUNDREDTH time, don't post if you don't have anything useful to say.This thread has been going on long enough anyway....

ImnoGuru, if you have any problems just open a new topic.
1271.

Solve : How to improve the appearance of a web in search result?

Answer»

I have a friend who make free PPC games and PUT on his website http://www.hydroemo.webs.com/

I am not very familiar with web DESIGN and he is wondering what he needs to do in order to have his website appears in search result when people search for "free PPC gamer" for example.

Thanks.

P/S: I ask him to register to the forum and ask the question, but somehow his email ADDRESS was prompted as spam and he could not register.Search Engine Optimisation. Quote from: kpac on September 14, 2009, 10:10:25 AM

Search Engine Optimisation.
How?Here are a few: http://www.webdesigntuts.net/tutorials/seo-tutorials

Google will give a few more. The major things are KEYWORDS, backlinks, and not overdoing it.
1272.

Solve : WMV Positioning?

Answer»

I have a small wmv on my site that I want to appear on top of an image. The image is of a stage curtain and I want the video to appear to be on the stage between the open CURTAINS. This is my HTML to launch the video...


     


            classid='CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95'
      codebase='http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701'
      standby='Loading Microsoft Windows Media Player components...' type='application/x-oleobject'>
     
     
     
     
     
     
              pluginspage='http://microsoft.com/windows/mediaplayer/en/download/'
        id='mediaPlayer' name='mediaPlayer' displaysize='4' autosize='-1'
        bgcolor='darkblue' showcontrols="true" showtracker='-1'
        showdisplay='0' showstatusbar='-1' videoborder3d='-1' WIDTH="320" height="285"
        src="gctupload.wmv" autostart="false" designtimesp='5311' LOOP="false">
     
     
     

        Launch in external player[/URL]
       
       
1273.

Solve : Insert object on Print Screen?

Answer»

I clicked print screen and want to insert a Word Auto shape (callout) to direct attention to a place on the screen catched with the Print screen button. I place teh callout over the image but in order not to move from its place I must integrate it into the image. How do I do it?I saved the image in PAINT, put it in a word document, did a call out and drug it over the image and then made another screen short.



Is that it?
thnaks. It seems very logical but I must confess I am an encyclopedic ignorant. Hw do yo save in paint? Sorry, but I am so ignorant I need a 1,2,3Ok. You get things on the screen in the position you want. Hit the KEY that says
Print
Screen


The MS Paint program is a simple image editor. It is located int he accessories in Windows XP. (I keep it on my start menu.)

Open the the paint program.  Next and click on edit and select paste.It will automatically adjust the work area and have the whole picture. (Later in Word you can re size it.). Next save the image as a GIF somewhere in My DOCUMENTS, or where you like. That can be pulled into word. Then in word you can make a balloon or call out and put text in it. The when you get it like you want it, ask for a print preview. Then again hit the print screen and open paint again and past the new modified image.Save it with a new name it you do not want to overwrite you first image.

There are some tools you can to make this much more sophisticated, but I will refrain. I seldom USE them myself. I think your way is easy and effective. I never thought of use Word to put call out boxes over a screen shot. Thanks for the idea.

Ms Paint does not take much memory, so you could just leave in loaded and minimize it to the task bar and pop it back up when you want to paste a new print sateen image.

The GIF format is maybe the best choice for screen shots.

Thank you for the detailed instructions. What I had done was to print screen on word document; place the callout; print screen again on word and that would integrate the callout unto the screen picture. The only thing I did not like is that Print Screen does not seem to be an exact duplicate but a picture of the screen, something similar to a photocopy and, as all copies, quality is lost. If you use it twice you are making a COPY of the copy. What I was trying to prevent was using print screen twice. what I really need is to embed the callout on the original print screen picture. If my impression that it is a photocopy of a photocopy is correct, then the situation worsens when I use a snag tool to select part of the image with the callout in order not to use the whole screen on my fianl workarea. That becomes a third generation copy! But mayber my problem was in using Word instead of Paint in the first place. I'lll try it the same procedure with Paint to see if the third generation does not lose quality. I'll let you know.
Is there any way, after doing the original print screen, to embed the callout and save the image combination on a single fix image without resorting to print screen again?Put your screen in high resolution, high quality color. Save the images s either BMP ot GIF, but not JPG.Here is high quality image os what I am writing to you now with my desktop in the background. Notices the clear crisp lines of the 256 color GIF image.




1274.

Solve : New website?

Answer»

Yeah they seem ideal. Thanks I've seen them advertised in a lot of computer mags you can get here in Ireland. I usually find it better to get both hosting and domain name reg with both the one company - it's usually cheaper aswell.Not only is it cheaper to get both at the same time, but a lot of web host companies will give you a free domain when you SIGN up. You could CHECK out ___ to find hosts that include a free domain.

No spam please. Quote from: kfawcett on JANUARY 04, 2010, 08:08:49 PM

No spam please.

Who exactly is going to spam you? Have you made your email visible? Or have you not READ the rules on Spam.. that it is not allowed and will be deleted by staff. Just curious why you added that, I have never seen anyone add that.Mulreay, that was me that said that. 
Quote
« Last Edit: TODAY at 11:54:56 by kpac »

Quote
You could check out ___ to find hosts that include a free domain.
I removed a link.Heh sorry I never clocked that my bad
1275.

Solve : Website Gadgets?

Answer»

Anyone need any gadgets for their website?

I'll attempt any SUGGESTIONS. I MAKE gadgets for the Google Gadgets section so they're easy to use on any site.Advertising? Just kidding...

What' you GOT?Right now I'm making simple gadgets but i'd like a challenge.

Here are some I've made

http://www.google.com/ig/directory?hl=en&synd=open&url=http://techgeeks-online.com/gadgets/ip2.xml

http://www.google.com/ig/directory?synd=open&url=http%3A%2F%2Ftechgeeks-online.com%2Fgadgets%2Fip.xml

http://www.gmodules.com/ig/creator?synd=open&hl=en&url=http://techgeeks-online.com/gadgets/osdetect.xml

1276.

Solve : How can I make this picture? (There is a screenshot)?

Answer»

How can I add in this mini PICTURE?

HREF="http://wk66.com/view-166_title_pict.JPG">You mean the icon? What do you want to do with it? QUOTE from: Carbon Dudeoxide on July 18, 2009, 09:54:03 PM

You mean the icon? What do you want to do with it?

I want to add that icon into my website, how can I make it?  My website is now like this:




that little guy is called a favicon.

http://www.photoshopsupport.com/tutorials/jennifer/favicon.html

see if that helps you.This can be quite useful in making a favicon: http://www.favicongenerator.com/ Quote
http://www.photoshopsupport.com/tutorials/jennifer/favicon.html

That's for using Photoshop. Not EVERYONE has Photoshop.

Once your favicon is generated (using link in last post), add this line of code in between the and tags of your page.

Code: [Select]<link rel="shortcut icon" type="image/x-icon" href="path to image here" />
1277.

Solve : Help with HTML please?

Answer»

Hi everyone i am new here.

i am looking for some help from someone who knows HTML really well.

basically i have a webpage that i cant validate due to one error....

this is it:     

1.   Error  Line 264, Column 54: document type does not allow element "form" here; missing one of "object", "div", "blockquote", "center", "noframes", "fieldset", "APPLET", "map", "iframe", "noscript", "ins", "del" start-tag

     

      ✉

      The MENTIONED element is not allowed to appear in the CONTEXT in which you've placed it; the other mentioned elements are the only ones that are both allowed there and can contain the element mentioned. This might mean that you need a containing element, or possibly that you've forgotten to CLOSE a previous element.

      One possible cause for this message is that you have attempted to put a block-level element (such as "

" or "

") inside an inline element (such as "

1278.

Solve : Getting page url with (#)??

Answer»

I see websites with menus that have the link SET to "#Page Name"

And I know that the page doesnt reload, so how do they make the page find out what is after #?

EXAMPLE:

I'm on page: www.lol.com
I click "About us"
It takes me to www.lol.com/#About
The page's URL only changes, but how do they make it so that the page behind the # loads?It's called an anchor tag...

Anchor TagsThat didn't help at all...
I see this alot too:

http://whatever.com/#Why

I guess I'll USE JavaScript.. Quote from: Bannana97 on July 19, 2009, 11:16:00 AM

I guess I'll use JavaScript..

It does use JavaScript. Just sets the visibility of one div to hidden and sets it to visible for another.
1279.

Solve : Thumbnail software needed?

Answer»

I'm working with a Realtor who needs to create thumbnail images of properties being listed on the web.  The thumbnails are linked to a larger version of the same image. 

I looked at a program called Easy Thumbnails and it LOOKS good to me.  But, I see many other thumbnail PROGRAMS are available; for example, http://www.sharewareconnection.com/titles/thumbnail.htm

Just wondering whether any of you are familiar with a thumbnail program that you like. Well, I haven't used any of those but it's fairly simple to create your own if you are using PHP for the site with some kind of admin back-end.Thanks for the reply, KPAC.  PHP will not be involved here.  It looks like Easy Thumbnails is going to used.  Some web page editors do it for you. Frontage for one.
Some image software has photo ALBUMS that create a index page of small images with links to the full SIZE page. The program does all the HTML for you.Easy Thumbnails is a popular free Windows utility for creating accurate thumbnail images and scaled-down/up copies from a wide range of popular picture formats.

Check their website  http://www.fookes.com/ezthumbs/

1280.

Solve : Trying to make sure I understand what brackets they are talking about?

Answer»

Quote from: kpac on September 16, 2009, 01:42:51 PM

Amy, I already said that CSS is used for anything that can view the Internet. Computers, laptops, mobiles, PDAs etc.
Yes, technically visiting a Website requires you to download the HTML and the files associated with the page (scripts, CSS etc) and these files are then stored in your browser's cache. So because the files are copied from the Website to your computer, it is downloading.

However, if the browser cannot read or open the type of file (for example .exe, .scr), then you see a box open asking you if you want to open or save the file - which is what you are talking about.
So, I guess that is why the repairman said not to go to sites that use Active X. Isn't Active x Javascript?

No, that isn't the box I'm talking about. The thing I'm talking about is when you go to Download software we need such as a browser- Mozilla. We go to the site and then we click on a button that says Download and we install the browser. Or when you go to other sites that have software we need like Flashplayer, etc.. You go to the site and you have to click on Download. It doesn't automatically START Downloading though. You have to actually click on the Download button.


Quote
So, I guess that is why the repairman said not to go to sites that use Active X. Isn't Active x Javascript?
Don't know why he said that. If you go to a reputable website then it's okay to install ActiveX controls. But again, you will always be asked first before downloading and installing these. ActiveX controls are only used in Internet Explorer anyway. And no, ActiveX is not JavaScript.

Quote
You go to the site and you have to click on Download. It doesn't automatically start Downloading though. You have to actually click on the Download button.
Yes, that's what I meant (and said).Activex is not always bad. Like if you go to Microsoft website for an update and it an activex thing pops up saying it needs to be installed first or perhaps you need to have realplayer plugin ran via activeX or something.

But I think activeX is a source of the malware and such. Active X is a framework for defining reusable software components (known as controls) while Javascript is a scripting language. Not teh same.Here is why I Active X is Javascript. I guess I have the wrong definition.
"About Web scripts
A Web script is a type of computer code that can be used to make your Web page dynamic. For example, a Web script could be used to include a "number of visitors" counter that increments each time someone visits your Web page. Or a Web script could be used to include a countdown to a special event: "only x more days", where x decreases by 1 every day. Usually Web scripts are run by a Web browser when a Web page is opened, typically to display information produced by the script. Creating Web scripts is an advanced Office feature that requires programming knowledge. You can add Microsoft Visual Basic Scripting Edition (VBScript) (Visual Basic Scripting Edition (VBScript): A subset of the Microsoft Visual Basic programming system. Microsoft Internet Explorer version 3.0 or later, along with the other Web browsers, can read VBScript programs that are embedded in HTML pages.) or JavaScript (JavaScript: A cross-platform, World Wide Web scripting language. JavaScript code is inserted directly into an HTML page. JavaScript makes it possible to build Java programs. The script anchor represents a script written in JavaScript.) to your page in Microsoft Word, Excel, PowerPoint, and FrontPage.
Scripting is useful for custom Web-based solutions development. It provides a full object model for the Web browser and the objects on the current page. This makes it easy to write code that manipulates elements on the page without you knowing the details of the HTML (HTML: The standard markup language used for documents on the World Wide Web. HTML uses tags to indicate how Web browsers should display page elements such as text and graphics and how to respond to user actions.) or how the objects are implemented. You can also create script code that is specifically designed to handle events that occur on objects (such as ActiveX controls (ActiveX control: A control such as a check box or button that offers options to users or runs macros or scripts that automate a TASK. You can write macros for the control in Microsoft Visual Basic for Applications or scripts in Microsoft Script Editor.)) on your page.
You view and edit the HTML code, along with any script code for your Web page, using the Microsoft Script Editor (Microsoft Script Editor: Used to add text, edit HTML tags, and edit any Microsoft Visual Basic Scripting Edition (VBScript) code in a data access page. You can also view your page in the Script Editor as it would appear in a Web browser.).  In the Script Editor, you can add text, edit HTML tags, and edit any Web script code. You can also view your Web page as it would appear in a Web browser and edit it in this view. For detailed information about creating scripts, see Microsoft Script Editor Help."


I'm beginning to think you all must be talking about different things than what I'm using for the Internet. I thought you had said in your last post to me that the files from the sites are being downloaded, copied. I didn't think it was copying anything unless I hit the copy or download command first. I didn't think that by just going to a website that I'm copying anything by just going to the websites. I thought I understood what copying something means. For example, tv shows, movies, etc.. we copy/record them by hitting record/copy. But you have to actually hit the copy button first. Unless of course you have it programmed in to automatically start RECORDING at a certain time.
Wait a minute, are you talking about this- hang on, here is something.
http://en.wikipedia.org/wiki/Active_Channel

Sorry for posting again so soon, but just thought I'd say, I think I finally figured something else out.
After reading this:
"I have found that even when the slices are small and optimised as best as possible there are still some issues with the loading. I would like to be able to have the site completely CSS run. As you will see with the design it revolves around a retro television with every page appearing as if it where on the TV. With slicing I have found that even if the header and most of the page doesn't change it still loads everything from scratch."
"Eventually, we would try to fit the frame around. Since it's a fixed size, a single background image will have to do, and we'll have to give it a fixed height as well. We'll also put some padding so that the content does not exceed the edges of the TV screen:"

Now, that is about tv's. So, CSS has to do with Tv's if I understand what I have read above. Now I know some computers have tv tuners, but ours doesn't. So, then it would mean that not all electronic devices use CSS. I'm not sure where your getting this but the information your getting is inaccurate:

Quote
You can also create script code that is specifically designed to handle events that occur on objects (such as ActiveX controls (ActiveX control: A control such as a check box or button that offers options to users or runs macros or scripts that automate a task. You can write macros for the control in Microsoft Visual Basic for Applications or scripts in Microsoft Script Editor.)) on your page.

What's being described here is a "scriptlet" and relies on an already existing ActiveX control called the "microsoft scriptlet Library". ActiveX is built on COM.



CSS is a part of web browsing. ANY device that can browse the web will include use of CSS. it's a browser feature that is defined by the W3C.

this CANNOT be stressed enough. Where did you get that quote from? Are  you aware that many people refer to their computer monitor erroneously as a TV screen?



HTML pages, CSS pages, an script files are all downloaded. (that's what "temporary Internet files" are.) the browser then loads that content locally.
Quote from: BC_Programmer on September 17, 2009, 07:35:37 PM
I'm not sure where your getting this but the information your getting is inaccurate:

What's being described here is a "scriptlet" and relies on an already existing ActiveX control called the "microsoft scriptlet Library". ActiveX is built on COM.



CSS is a part of web browsing. ANY device that can browse the web will include use of CSS. it's a browser feature that is defined by the W3C.

this CANNOT be stressed enough. Where did you get that quote from? Are  you aware that many people refer to their computer monitor erroneously as a TV screen?



HTML pages, CSS pages, an script files are all downloaded. (that's what "temporary Internet files" are.) the browser then loads that content locally.

I give up. So, does my mom. No wonder we are so confused, I guess all the things we have learned over the years are all wrong. This is beginning to make me even more confused. Seems the complete opposite of everything I'm reading right in front of me. I'm getting the information from software on the computer and is also in books that came with everything too.
Also, before my dad passed away, he was a computer programmer. So, is another way of the information we have on computers.



Yes, we know what Temporary Internet Files are. But we didn't think we were actually downloading anything unless we hit a copy or a download button to tell it to save the file. My mom is always telling everyone before we use her computer, one of the #1 rules is not to download anything without asking her first. Meaning don't hit any download buttons to download software or anything. I guess this is why both of our computers keep having so many problems from viruses, spyware, etc.. since we didn't think we were actually saving any files unless we tell it to first. See, we first learned about spyware when actually my computer was the one that got hit from it years ago from it with an assignment we had to do for this online computer class I had just signed up for, and required us to download and install AIM. The spyware came through with the download. We had heard about viruses, but like I said, spyware was new to us.

We are reading those pages you gave us about Active X and Com. It talks about Portable devices. Cellphones, cameras, mobile phones, pda's, laptops, all those are portable devices. Now I know some computers come with those devices built into it, but ours don't have them, plus aren't they just components, meaning not actually in the computer. It's hooked to the outside, externally. Like not in the case itself. It also talks about Cd-rom. Multimedia, yes we know what that is too. But, we use a cd player for playing cd's, which isn't using the computer to play the cd, or we have a dvd player and is all hooked up to our TV set. Of course our dvd player actually also will play cd's.



your not reading bad information. just not interpreting it in context. Quote
Yes, we know what Temporary Internet Files are. But we didn't think we were actually downloading anything unless we hit a copy or a download button to tell it to save the file. My mom is always telling everyone before we use her computer, one of the #1 rules is not to download anything without asking her first. Meaning don't hit any download buttons to download software or anything. I guess this is why both of our computers keep having so many problems from viruses, spyware, etc.. since we didn't think we were actually saving any files unless we tell it to first. See, we first learned about spyware when actually my computer was the one that got hit from it years ago from it with an assignment we had to do for this online computer class I had just signed up for, and required us to download and install AIM. The spyware came through with the download. We had heard about viruses, but like I said, spyware was new to us.
Let's start again.

The "downloading" I was talking about is Web pages - only. The Web browser automatically downloads the page and stores it in a temporary folder (hence, temporary files) - no spyware or viruses can be downloaded this way. Deleting these files is more commonly known as "clearing the cache".

When clicking on a link to download a file - like .exe, .src, .zip, .rar etc. - the box pops up asking you if you want to download the file. This will happen only for files that the browser cannot display.


Quote
Of course our dvd player actually also will play cd's.
This is the problem. It's like physics - so many different infinite paths of information available. You keep going down multiple paths at the same time and then end up getting confused. Stick with one path at a time.\ Quote from: kpac on September 18, 2009, 07:28:36 AM
Let's start again.

The "downloading" I was talking about is Web pages - only. The Web browser automatically downloads the page and stores it in a temporary folder (hence, temporary files) - no spyware or viruses can be downloaded this way. Deleting these files is more commonly known as "clearing the cache".

When clicking on a link to download a file - like .exe, .src, .zip, .rar etc. - the box pops up asking you if you want to download the file. This will happen only for files that the browser cannot display.


Yes, we know what cache and temporary internet files are. Some things like this below say not to do it for certain situations.
"If you have been told to clear your cache files and do not know how to do it, please look below to find your browser and then follow the instructions about how to clear your cache files. Please note: Dial-up users SHOULD NOT attempt to clear their cache as it may create complications when trying to log back into Webkinz World."

Which maybe this is why I keep having problems getting back into my accounts after we clear things like the cache, cookies, temporary internet files. Everytime we clear those things, I can't get back into my accounts.

Also, due to just so many wrong things people have told us over the years, we try and be very cautious with anything people tell us to do before doing it. Before the Dell computers we have now, we use to have Compaq. With mine it had constant problems with saying "Operating System Not Found" everytime I boot up the computer using the button on the front of it. Anyways, this tech told us to do an Fdisk, and before doing it, we asked several times if we need to back things up before doing it. Trying to make sure we aren't going to lose anything by doing it. They said no that we wont lose anything and that we don't need to back anything up. So, she took us through the instructions over the phone, and then of course it wipes out the whole hard drive. 


If we aren't suppose to get viruses and spyware by just going to websites, then why do we keep getting hit everytime we go to the sites? We open the browser, we go to the website by typing in the url- like http://www.webkinz.com/index.html
Sorry if you don't believe us about it, but that seems to be what keeps happening to us when we go to websites, is when we are getting hit. Don't see any way to know AHEAD of time if it's a safe site or not. I would think college site would be safe, but I guess not since that is one of the places we got hit right after going to the site and doing the assignment I got hit.
We just seem to have bad luck with everything in life not working right. But then of course it's an electronic and all electronics are going to have problems as we seem to notice.


1281.

Solve : Access denied??

Answer»

Heres my code:

function Navigate(uri)
{
D1.document.location = uri;
}

it says on line 3 ("D1.document.location = uri;") access is denied after I navigate..

Uh. Help?What is "D1" and where is it DEFINED?

Is it a JAVASCRIPT error or PHP error?Javascript error.

And D1 is:


Try this method instead:

Code: [SELECT]function navigate(uri)
{
  document.getElementById("frame1").SRC = uri;
}

Just give the iframe an ID of frame1.

1282.

Solve : SAP training video?

Answer»

Hi all,

i want to know some REVIEW about this site here www.sapjuice.com which CLAIMS to have SAP TRAINING VIDEOS for new consultants. If anyone has tried this site before i wud appreciate your comments...

its very EXPENSIVE at USD550 hence i want to make sure i get what i want. please feedback.

1283.

Solve : search this site, thing?

Answer»

my website is www.computergeeksonline.webs.com

and it's partially a NEWSPAPER website, so there's gonna be a lot of content pages, but instead of making a enormous list, that would need to be updated constantly, i would rather have people search for the page instead...

does ANYONE know of a good code that can do this? like something GOOGLE, i tried askdavetaylor.com's thing but it won't work..So, you want a search engine for your site?

CHECK out this tutorial.Or USE a CMS.  Drupal, Joomla, Mambo, Xoops, etc.

1284.

Solve : Frame height problem?

Answer»

Hey all,

I've got a frame on my site, which is a simple box, made for a poll. Once the user has voted, it loads a new page with the results in the frame. A lot of PEOPLE told me I shouldn't use frames because they're bad, but atm I don't care, it's good like that, and I want to use it !

The only problem is the height. I can set the height so it's not too small or too big, but the problem is that the height is not relative. That means if I remove "height: xxxpx;" from the CSS stylesheet, it automatically sets the frame at 50 px or so but that's too small, so the scrollbars appear and you have to scroll in the frame. And that's weird. Any idea how I could change that ? Do you see what I mean ? Cause I will change the question of the poll quite often and then I WOULD have to change the height in the stylesheet everytime, that's crap


Thanks in advance,
well i can see the problem. is a standart type error.
if you look here you have a > in the first line, before you have >. height="500" allowTransparency="true" src="www.booking.com" >
to MAKE make it work the code work it should look like this www.booking.com" >

HOPE it will help.

1285.

Solve : HTML Code Box?

Answer»

I have banners that I wanna allow members at my social network to use to promote my site. So I have 6 of the banners up for people to see and wanted to have a HTML Code Box underneath so people can copy and past it one there website and the banner be clickable on there site. I know the HTML for the box but for some reason the code is not showing up in the box. Instead nothing shows.

The code is : =====your code=====

I replaced =====your code===== with my HTML code and the box comes out blank.

If anyone knows how to do this so the text shows please PM me or post how here as a comment.

William Clements Post exactly what you replaced "your code" with.....All 6 banner CODES I replaced with each are below:

Banner #1:

http://www.advertisebiz.ning.com.com" target="_blank">http://i813.photobucket.com/albums/zz56/dreynolds23business/clements/header.jpg" width="468" height="60" border="0" />[/url]

Banner #2:

http://www.advertisebiz.ning.com.com" target="_blank">http://i354.photobucket.com/albums/r432/dreynolds23/finalblinkie.gif" width="468" height="60" border="0" />[/url]

Banner #3:

http://www.advertisebiz.ning.com.com" target="_blank">http://i354.photobucket.com/albums/r432/dreynolds23/clements-2.gif" width="468" height="60" border="0" />[/url]


Banner #4:

http://www.advertisebiz.ning.com.com" target="_blank">http://i813.photobucket.com/albums/zz56/dreynolds23business/clements/header.jpg" width="120" height="60" border="0" />[/url]

Banner #5:

http://www.advertisebiz.ning.com.com" target="_blank">http://i354.photobucket.com/albums/r432/dreynolds23/finalblinkie.gif" width="120" height="60" border="0" />[/url]

Banner #6:

http://www.advertisebiz.ning.com.com" target="_blank">http://i354.photobucket.com/albums/r432/dreynolds23/clements-2.gif" width="120" height="60" border="0" />[/url]

Are they right?

William ClementsI'm seeing a LOAD of broken images...

Anyway, if you just put HTML code in the textarea, the browser will interpret it as HTML code.  What you need to do is to REPLACE HTML special characters with their HTML entity equivalent.  For example, instead of "<", put "<".  Instead of ">", put ">".  Full list of entities here: http://www.w3schools.com/tags/ref_entities.aspThanks. I got it to work but then decided I'd rather just have the code without the box as now i'ts done!

I cannot thank you enough!

William Clements

1286.

Solve : What type of design to use? An original or template??

Answer»

Thats execually all I need to know... Title said all ))I can't find "execually" in my dictionary.   

You really need to elaborate on what you want to do.  Is this a personal website or is it for business?  How many pages do you anticipate?  Do you have any knowledge of HTML?  Done any prior website work?  If so, how did you do it?  Do you have any web authoring SOFTWARE that you were thinking of using? Get SERIF Web Plus. It;ll do all you wantIf you know how to DESIGN a layout and TEMPLATE, do it yourself.  If you don't know how, use someone ELSE's (but use it legally!).  Just keep in mind that a pre-made template often has complications because it wasn't designed with your site and content in mind.

1287.

Solve : Html Editor?

Answer»

what is free software HTML editor you can use for free ?KompoZerNotepad++, PSPad, Nvu, HTML-Kit.I was assuming he does not want to type HTML code, as he have to do with Notepad++ or PSPad, due to lack of knowledge.  Nvu is basically the same as KompoZer.  In other words, I believe he wants a tool where he can work in a WYSIWYG screen and the software will create the code for him. Quote from: SOYBEAN on December 31, 2009, 12:46:21 PM

I was assuming he does not want to type HTML code, as he have to do with Notepad++ or PSPad, due to lack of knowledge.  Nvu is basically the same as KompoZer.  In other words, I believe he wants a tool where he can work in a WYSIWYG screen and the software will create the code for him.
Yeah, I'm assuming the same thing but I thought I'd give the option of both. Nvu is really an older VERSION of KompoZer.Just put together this quick LIST of editors:
http://www.webdesigntuts.net/design-software-tutorials/list-of-common-html-editors.htmlPersonally I like SeaMonkey by Mozilla.Thank you yes what to build a website and have all the codes done for me thank you for the links  very good thanks.
Dalton Hands down Aptana Studio is by far the best free html editor. It has many features that you would only get on Dreamweaver.You can use Notepad, Dreamviewer  and Frontpage. Notepad has raw html codes. You MUST learn HTML codes if you are working with Notepad.
1288.

Solve : "null 2"?

Answer»

For some reason, document.getElementById("D1") is returning null... And it's clearly on the PAGE..

Code: [Select]<iframe id="D1" style="width:100px; height:100px; border:1px black solid; display:none;" src="Get.php?ID=1">
</iframe>
<div id="ReadURL" name="ReadURL">
<?php
$ID = $_GET['ID'];
$user = $_COOKIE['usern'];
if(!$user) {
$user = "Guest";
}
if(file_exists("Chat/$ID.php")) {

}
else {
$A = fopen("Chat/$ID.php", "w");
FWRITE($A, "<script type=\"text/javascript\">
function reload(t) {
if(!t) {
if(!document.getElementById('D1')) { ALERT('null 2'); return FALSE; }
document.getElementById('D1').src = document.getElementById('D1').src; // D1 is an IFrame.
setTimeout('reload(\'true\')', 1000);
}
else {
if(!document.getElementById('D1')) { alert('null 1'); return false; }
if(document.getElementById('D1').document.getElementById('ReadURL').innerHTML != document.getElementById('ReadURL').innerHTML) {
alert('false');
window.location.reload(true);
}
else {
setTimeout('reload()', 1000);
}
}
}
setTimeout('reload()', 2500);
</script>Welcome. To get started, type something in the chat box below.");
}
echo file_get_contents("Chat/$ID.php");
?>

</div>
What is this line supposed to do?

Code: [Select]document.getElementById('D1').src = document.getElementById('D1').src;
And:

Code: [Select]!document.getElementById('D1')
Have you checked the spec for getElementById()?  Can you negate it?

I have to say once more, the javascript prototype library makes this kind of stuff much easier.  "$('id')" instead of "document.getElementById('id')".  Nice.  http://prototypejs.org/

Also, using the DEBUG console of the Web Developer plugin for Firefox is a lifesaver.

1289.

Solve : Free visit web counter to add to my google page?

Answer»

Hello,

Do you know where I can find free visit web counter to add to my Google page: http://sites.google.com/site/emilsekula/ ?

Regards,
Many free ones are available.  I can't recommend a specific one.  See http://www.google.com/search?client=firefox-a&rls=org.mozilla%3Aen-US%3Aofficial&channel=s&hl=en&source=hp&q=web+hit+counters&btnG=Google+Searchhttp://www.statcounter.com/I suggest, you use Google Analytics, or Woopra instead.It doesn't work. Instead of the counter I have: http://img300.imageshack.us/img300/2392/page.png And it happens with all counters. Which one doesn't work?  To whom are you replying?All of them. When I put counter source to my page the effect is as I told before. Well, pick one for purposes of discussion here.  I suggest the one kpac POSTED.  Exactly how are you going about trying to INSTALL it? 

You might also try their support forum http://forum.statcounter.com/vb/I don't know why but I can't to login to its forum. I have send an e-mail to them. OBVIOUSLY, you need to register on their forum, like virtually all forums, before you can login.   I know I have to register but I can't with my nickname. Ok. The problem is solved thanks to the support.
Thanks.I think Google Analytics is better. It is Java script based. So some users without java script will not count.  But it does not count robots. Also it has benchmarking feature and very GOOD COMPARISON system. If you are using adwords you can join it with Analytic.

1290.

Solve : Linux Friendly Formal Education?

Answer»

Hi, I could really use some advice from anyone who has attended a school for a formal education in "Information Technology" aka programming.  There are a lot of schools out there!

I am 30 years old and mostly skilled in PHP.  I know a thing or two about Javascript, MySQL, MSSQL, Coldfusion (I can't stand this language and will avoid using it at all cost).  I am a BIG fan of the Linux OS and would appreciate course material that focuses on this platform, but also gives me some understanding of Windows SERVERS.  I would love to also come outta there with a good overall knowledge of networking, server maintenance, database design and maintenance... and business skills!  I am a bit of a pushover and I have a hard time putting a realistic price on my work.

I took a few courses at LBCC here in Long Beach, CA and found the books to be extremely dull and a slow read.  I much prefer a book that you'd get off the shelf at Barnes & Noble, such as Wrox "Professional PHP5", (isbn: 0764572822) which is blowing my mind.  I QUIT after one semester and started doing freelance work.  I am a little concerned with how long my jobs are taking me because I'm learning as I go and my curiousity is really getting in the way of my PRODUCTIVITY!  So back to school.

Any advice will be greatly appreciated! Thanks for reading.
RobbI dont know of any 1 book that will cover all. There are many good books out there many free ones on the web or free to read, but not downloadable due to copyright.

Finding a book that is Linux/MS Server is going to be a needle in a hay stack to find if there even is one. True linux people dislike Micro$oft and likely wont add how to tie then together and Micro$oft will not promote Linux...lol

What are you trying to accomplish with Linux that a MS product doesnt already have. Is is mainly because its free or some other purpose?

Freelance work is hard until you have a customer base and portfolio to show off. Most new freelancers will TAKE on work in which they are not even making minimum wage if they broke down how much effort ( labor by hour ) is put into the projects. As a noob freelancer you have to assume that your self education through the process has a value like money, and so even if your not making much you are in hopes that you are self educating in areas and strengthening skills or learning new ones to apply.


   Its best to look over an entire project and try to be realistic, and it is not a push over to take less than the competition since the competition may be able to get done in 3 days that which could take you a week or longer to complete the same project.

   When i freelanced back during the dot com boom money was everywhere and there was plenty of work. Today there is little due to economy and people are looking for price breaks. Good luck!

1291.

Solve : Javascript isn't reloading if Iframe is different.?

Answer»

Code: [Select]if(document.all.D1.document.all.ReadURL.innerHTML != document.all.ReadURL.innerHTML) {
window.location.reload(TRUE);
}
else {
setTimeout('reload()', 100);
}

D1 is an Iframe. ReadURL is in both pages. It's the DIV that has the contents. It keeps thinking its the same, even if it's truely not..Something doesn't feel right about this: document.all.D1.document.all.ReadURL.in nerHTML

Can you traverse down through the contents of an IFRAME like this?  Or do you not have to rely on callbacks from the CONTENT within the IFRAME to the PARENT window?

See my other response for ways to make life easier for yourself.

1292.

Solve : Looking for help adding Yahoo's Babel Fish in Front Page?

Answer»

I am attempting to install Yahoo's Babel Fish in the common-to-all-page area at the left of my home page - www.hotlinecy.com. I copied the script into the html view and it does not work. The script appears in text on the right part of my home page above the home page counter. How do I get the icon to appear in the common area and link to the translator? I copied the icon but can't get it to work. It is just a gif. You are supposed to click on one of the flags to translate to or from that text.

 Thanks...Cy Stapleton, Lufkin, TXI may not have the answer but I think the version of FrontPage you're using would be helpful.Thanks for the response. I thought I had included the FP version. I'm using 2002.

Thanks again...

cyCan you post a link to instructions on the Babel Fish website?  You did get instructions somewhere, right?I looked at your HTML file for your home page and I see no javascript coding for Yahoo's Babel Fish.  You have the Babel Fish image on your page but your don't have the proper JavaScript to make it work.  Is http://babelfish.yahoo.com/free_trans_service the source you went to for your code? Quote from: soybean on September 05, 2009, 05:16:14 PM

Can you post a link to instructions on the Babel Fish website?  You did get instructions somewhere, right?

The problem is that I COULD not find any instructions. The way it should work is like on the site http://www.econohonda.co.nz/Contact_Us.html. This is a friend's site and he has no idea how it works. He is trying to find out but has had no LUCK so far.

I just copied and pasted the icon so I could see where in the html code it needed to be. If I link that icon to the Babel Fish website, the individual flags and the "translate this page" do not work.

Thanks

cyOf course not.  You need to do more than that.  Visit the link I posted and make your choice there.  Then, copy the code into your file as directed.I really appreciate the help and am BEGINNING to feel like that East Texas Bubba. I have linked the icon to the url you gave me. What that does is take me to the options to SELECT which one I want. The one with the flags is not an option, but the one that translates this page will work fine. I say I want that one and it takes me to a scrip to copy and paste in my html.

I pasted it in at about line 75, but nothing happens. How do I get the icon on the home page to find the script?

Thanks,

cyThe image on your page came from http://www.altavista.com/help/free/free_searchbox_transl, not http://babelfish.yahoo.com/free_trans_service.  So, we have two different sources here.  They display different images, based on the javascript code they provide you, but they both go to the same translation cite. 

I think your code is getting changed when you copy it into FrontPage's HTML view.  Here's what I see in your HTML file:

<script language="JavaScript1.2" src="http://www.altavista.com/static/scripts/translate_engl.js"></script>


               

<script type="text/javascript" charset="UTF-8"
language="JavaScript1.2"
src="http://uk.babelfish.yahoo.com/free_trans_service/babelfish2.js?from_lang=en&amp;region=us"></script>

Apparently, you've now attempted to paste code from two sources into your file.

Here's what the code should LOOK like from http://babelfish.yahoo.com/free_trans_service:

Code: [Select]<script type="text/javascript" charset="UTF-8" language="JavaScript1.2" src="http://uk.babelfish.yahoo.com/free_trans_service/babelfish2.js?from_lang=en&region=us"></script>

And, Here's what the code should look like from http://www.altavista.com/help/free/free_searchbox_transl:
Code: [Select]<script language="JavaScript1.2" src="http://www.altavista.com/static/scripts/translate_engl.js"></script>
So, pick one or the other.  And, of course, only use one of them in your HTML file.  Note that your present code line starts with &lt; and you have other characters such as &gt; that have gotten changed somehow from the original code. 

I believe you have two options for getting the code line correctly copied into your HTML file. One is to copy and paste in the same manner as previously done and then edit it to make sure it's correct.  The other way would be to use a different method of getting the code into your HTML file.  I have FrontPage 2000 but haven't used it for a long time. Anyway, the main menu has an Insert command.  One choice on the Insert menu is HTML.  This opens a box in which code from other sources can be pasted.  I don't know whether FrontPage 2002 has the same feature.  The purpose of it is to circumvent FrontPage's tendency to alter coding during a straight copy and paste, as you've done.  Again, I believe those are your two options for getting the coding correctly entered into your HTML file.Here is a very simple test I just did.
http://geek9pm.com/test.htm
It seems to work for me.
But I did not use Front Page.   

1293.

Solve : Cheapest .COM domain registrar?

Answer»

I want to sign up for a cheap domain name no more than $10 a month which lets me use name severs so I can use ZoneEdit.com to redirect to my servers.GoDaddywebhostinggeeks Quote from: kpac on October 04, 2009, 01:14:22 PM

GoDaddy
ANOTHER vote for GoDaddy. Quote from: soybean on October 08, 2009, 08:03:02 AM
Another vote for GoDaddy.
I haven't used them before, but go by their excellent reputation.I have bought many domains with GoDaddy. You always can GET deals and money off all the time. 3rd for GoDaddy.Friend you can use this site http://www.tucktail.com/  .
This site provides the .com domain at $1.99 for the first year..Not only this, it also OFFERS,domain name locking,forwarding/masking, total dns control,personalized email etc., It have Traffic Blazer for increase the ONLINE visibility..I'll put in a 4th for GoDaddy. I use them and get great service. 5th for Godaddy.com, look for their special offers that appear from time to time.Go for Godaddy. They are cheap and reliable.
1294.

Solve : "Change image" - PHP????

Answer»

I am trying to MAKE something that will allow a use to recolor different things in an image.
Theres a few parts.

Head, right leg, left leg, head, torso, right arm, left arm.

I dont know how to do this, THOUGH. I know its done with php.

Can someone help me FIND a link to a website that shows how?It depends which image library you have INSTALLED with PHP.  I usually use GD.  Full references here: http://www.php.net/manual/en/refs.utilspec.image.phpThe default WordPress theme's header image does something like this.But how would I combine two images, or more?I don't think GD can combine images. Maybe ImageMagick can. Quote from: Bannana97 on July 21, 2009, 09:06:07 AM

But how would I combine two images, or more?

Have you read the manual yet?  http://www.php.net/manual/en/function.imagecopymerge.php

Quote from: kpac on July 21, 2009, 09:46:05 AM
I don't think GD can combine images.

Have you read the manual yet?  No actually!

But I have now. Most of the examples just use one image..... Quote from: Rob Pomeroy on July 21, 2009, 10:14:51 AM
Have you read the manual yet?  http://www.php.net/manual/en/function.imagecopymerge.php

Have you read the manual yet? 

I dont understand that D: Quote from: kpac on July 21, 2009, 11:14:45 AM
But I have now. Most of the examples just use one image.....

copymerge - there's a clue in the function name.  Merge one image in, then another, then another, etc.  Or use functions to CREATE the entire image in one, programmatically.
1295.

Solve : MySql PHP configuration problem?

Answer»

Hello-
I HOPE this is appropriate to this forum.
I cannot seem to get my PHP installation (5.2.12.12) to recognize MySql functions.
MySql version 1.0.16.0.
I've MOVED libmySQL.dll into windows/system32/
I've edited my php.ini FILE to uncomment: extension=php_msql.dll
and extension=php_mysql.dll. And yes I restarted my Apache server each time...
I've edited my environment variable PATH and basically have exhausted both myself and my ideas.
Any help would be GREATLY appreciated.Are you sure that's the right MySQL version? The current version is 5.

1296.

Solve : do any experts know this site?

Answer»

i'm looking for a completely free web page , any where i have been to you have to pay , i'm trying to make a simple / BASIC web page is below the answer for me


http://www.cushycms.com/I don't know that one, but I use this free one: http://ipbfree.com/home/ Quote from: HARRY 48 on August 04, 2009, 03:58:31 PM

i'm looking for a completely free web page , any where i have been to you have to pay , i'm trying to make a simple / basic web page is below the answer for me
http://www.cushycms.com/
Nope, that's only a CMS.

A simple search would have given you plenty of posts to keep you occupied. There have been about 4 topics concerning free hosting/websites in the last WEEK.

Quote from: Broni on August 04, 2009, 08:35:45 PM
I don't know that one, but I use this free one: http://ipbfree.com/home/
Broni GETTING into the Web design? I play a little thank you both i NEVER thought about a search     Quote from: Broni on August 04, 2009, 08:35:45 PM
I don't know that one, but I use this free one: http://ipbfree.com/home/

broni i had a look in this and it looks like another forum Oh, I know what you're saying.
Try this: http://chi.mp
1297.

Solve : Embed image in email??

Answer»

Okay so my friend has an AIM status icon (running man, away image, offline running man, etc.) image in her email signature, and I want it too. So I got the URL for the image alone (http://presence.webmail.aol.com/mailsig/?sn=xxxxxxx) where "xxxx" is your screenname, but it links to another image
such as:
http://o.aolcdn.com/aim/img/away.gif (away)
http://o.aolcdn.com/aim/img/online.gif (online)
http://o.aolcdn.com/aim/img/offline.gif (offline)

I've tried the "" method, "[IMG]" method, and all I see in my signature is ....HTML code...
So..
HELP!
Please?Your signature on the forum? It doesn't accept HTML. Try BBCode, using this

Code: [Select][img]link to image[/img]Nooo lol it's for emailOh, sorry......

Are you using Outlook? Or is it a web based email?
What you want is this:

Code: (html) [Select]<img src="http://presence.webmail.aol.com/mailsig/?sn=xxxxxxx" /&GT;It is web-based email.
I figured it out!!
Yay me! Haha
Thanks GLAD you got it going.

1298.

Solve : Does anyone know how to edit PRO Chat Rooms 5.0?

Answer»
Question 1.

First of all sorry for the bad English I am using a translate program.






Question 2.
I'm searching for chat script like this:
www.speakyweb.com

Are there any chat SCRIPTS like that?


Hope SOMEONE can give me some answers thanks :-)There are very few FREE ones that actually do WORK well and have GOOD features. Do you WANT to pay for one?I am searching for the free ones definitely

Can you give me some information about some free ones?https://blueimp.net/ajax/ AJAX Chat
1299.

Solve : CSS Layout?

Answer»

Hi

I am still very wet BEHIND the EARS when it comes to CSS and HTML. How do I do CSS layout. I want to get a blue boarder along the LEFT hand side of my page and along the top. I then want to add my main TEXT to the right of the boarder. I cant even get my text to move to the part of the page i want.

Please help.Start here: http://www.w3schools.com/css/ Quote from: af152001uk on July 24, 2009, 09:24:05 AM

I want to get a blue boarder along the left hand side of my page and along the top. I then want to add my main text to the right of the boarder. I cant even get my text to move to the part of the page i want.

You'll need to use the border and margin CSS properties.  READ up on the box model and the difference between margins and padding here: http://www.w3.org/TR/CSS21/box.html
1300.

Solve : Dreamweaver...header and background?

Answer»

hi, I am working on Dreamweaver 8 to make a SIMPLE website. There are some questions regarding banner(header) of a website.

1. I want to insert an image( a banner) in the header ( made from a table not from template).
I want to make that banner fit to the width of the PAGE. The banner is fitted on the table tell but when i click F12 to see in browser it doesnt cover the whole width of the webpage.

2.I have TESTED a landscape image in jpg format to fit in the banner of a web page. It WORKS but not the whole part of the scenery fitted in the banner just the top part, sky( not mountains and sun).
How can i fix it.
Any good suggestion will be welcome.

Note: I also have adobe photoshope 8 to work with images.

1. There is also the CSS & HTML property 'width' of an image.



100% being the width it crosses. So it will vary how you stretch it etc.

2. You WOULD want to squish the image of the landscape together so that you see it all in that banner?
The landscape fitting in the narrow banner, I would set a fixed width & height
and then set those values as the width & height values of the image you are editing in Photoshop.
(Image Size)