Jump to content

JohnCP

Members
  • Posts

    26
  • Joined

  • Last visited

Posts posted by JohnCP

  1. Hi, I just had a question concerning my Table at the top of my page. This table is being used for my site logo and login section at the top and it spans the entire page..

    <table cellpadding="0" cellspacing="0" width="100%" bgcolor="red"><tr><td width="234" valign="top"></td></tr></table>there is a "gap" between the top of my table and the browser, leaving me whitespace.  Anyone know how to get rid of it?Thanks in advance, JP
  2. Hi all, I worked on this for awhile, and i just can't seem to get it right. I have 3 tables, all with the same column names on each table: EMAIL, LASTNAME, FIRSTNAME, SIGNEDIN. the last column, SIGNEDIN contains a value of NULL or 'YES' depending on who signed in. The first 3 column values are the same for all 3 tables.I'm trying to use a join to get collect data on the email address of the people that have a value of NULL for the SIGNEDIN column from all 3 tables. now with this new list of people, i'm going to compare it to another table (TABLE_FOUR) that contains the same EMAIL column list and see if the SIGNED_IN column value of NULL matches the SIGNED_IN FIELD in TABLE_FOUR by email address. Sorry if this sounds confusing, but any help is much appreciated..Thanks, JP

  3. Yea, ConTEXT has a folder veiw on the side. check out http://context.cx/ to download and stuff. If you really want to know more, ask Justsomeguy(on this forum).
    Thanks all for the help..ill definitely check it out...so, the above mentioned IDE's can also recognize server side scripting langs as well? ASP, PHP?
  4. I'm using eclipse in order to learn Java. I'm not looking at it right now, but I'm pretty sure you can choose different syntax highlighting depending on wich language you select.I really like programmers notepad a lot. Its a fairly small download, and all of your functions and things can be collapsed. And the syntax highlighting is great.http://www.pnotepad.org/download/Heres a screenshot. You can see the - in the boxes, you can click those and collapse your statements.and the dropdown box that says Perl in it, has about 30 or so different choices for highlighting.http://www.pnotepad.org/wp-content/uploads...6/03/pnperl.png
    Sweet, thanks, i'll check it out..the interface looks like notepad on steroids..i was hoping to use something that allowed you to view your folders (menu on left side).....i think eclipse can support other languages, just need to install the right plugins...any thoughts on dreamweaver MX? Thanks again for the help...JP
  5. Hi, Just wondering if there's a good IDE out there (besides Textpad) that'll recognize HTML, javascript, ASP, or PHP....trying to figure out which would be best..Also, not sure if anyone uses Eclipse, but does eclipse recognize any of the above? Thanks in advance, JP

  6. "Portal technology" is a meaningless term invented by some marketroid to make their website sound advanced.  If a portal is a website (like Yahoo) where people go to as a "home page" or something, something that offers a jumping-off point to various other places, then "portal technology" is anything that website uses, which is .. well, basically, everything.  So portal technology is all of the technology that websites use.You can do a fine job with PHP/MySQL to handle subscriptions and manage site content.  And when you are all finished, you can say your website leverages the versatility and utilizes the extensibility of portal technology, and it might even be Web 2.0-enabled.  Congratulations.

    Thank you for your help. So basically a web portal is jsut a launching point to another site? I'm confused, why can't a person just use a ref link to do that? would that be similar to a portlet within a portal? Thanks, JP
  7. Hi all, Is there anyone out there that can explain what portal technology is and how it is used in web development? I know this question is very vague...Basically I am trying to build a legit business website with email subscription, a database with member profile information (biography)...The site is up and running, but very basic...i wanted to use PHP/MYSQL, but i'm not sure where portal technology fits in or if i even need to use it?? Please help, Thanks in advance...JP

  8. Calvin, Thank you very much for your response....I guess my main question is how do you know WHEN you're supposed to use a server side scripting language such as PHP, ASP, etc...? for example, let's say you were to build a home website for company xyz. The site was to consist of a home page, company overview, employees, products, a page to buy their products, store locators...etc....when would server side scripting come into play? I hope i didn't confuse you with my jargon. Thanks again, JohnCP

    answering your questings...1: you only use it when you need to. if for example you wanted to change the title of the page by changing some things in your address bar, you would do this:
    <html><head><title><?php echo $_GET['title']; ?></title></head>...etc

    and in the address bar you type: http://www.domain.com/index.php?title=Hello%20Worldjust make sure that if there's php code in the page, it must have a .php extention.2: The best tool for PHP development is notepad and your internet conection. php.net has some amazing reference materials and w3schools forum is perfect to ask for help. That's all I use and I'm a n00b myself.I would recommend just playing around with variables. To call a variable from a form post use $_POST['variablename']; and from the address bar use $_GET['variablename'];. If they are just variables in the script, then you could just use $variablename;. Remember that all php must be in the php tags. When sending variables through links (like in the address bar use http://domain.com/index.php?variablename=variablevalue and when you want to add more vaiables just add & like http://domain.com/index.php?variablename=v...tle=demo&page=2

  9. Hi all, I am very new at web developing, I currently work as a Java Programmer, and am extremely interested in learning how to create dynamic web pages and to hopefully create some business for myself...Just had a few questions on creating thin client apps:1. How do I know when to use a server side scripting language in my code? i.e. PHP, ASP integrated with my HTML code...2. What are the basic tools I need on my laptop to start developing server side web apps? I apologize if my use of terms doesn't make much sense, but i'm hoping you guys know what i'm trying to ask...basically, i'm just trying to get my foot off the ground..any advice would be helpful and much appreciated...Thanks again, JohnCP

  10. Hey all, I'm sure this topic has been discussed before, but my curiosity has gotten the best of me on this topic. I have just started a new job as a Java Developer, and lately the whole outsourcing craze has gone up to a whole new level. Where do you guys see IT programming within the US in the future? I am asking since I am having thoughts about switching fields? Thanks, JCP

  11. I could be mistaken but it sounds as if JohnCP was referring to the table not being at the very top of the screen, which my modification will fix. Sorry if I interpreted your question wrong.

    yes, selacius, you are correct, that is my issue, the table not being at the very top of the screen. Your modification is perfect, however, is using CSS the only method to solve this problem, or is there a way to fix via HTML alone? just curious, Thanks, JP
  12. Hi, I've searched everywhere and could not resolve this..apparently, there are gaps from my table and my browser. Also, I have a text gap in my middle table cell from the top. I have tried to get rid of cellspacing but that doesn't seem to resolve the issue. I am sorry I was not able to provde a screen shot of my problem, but the code is below. The "gap" problem resides at the top of my table. I'm thinking it could be a default header issue? Thanks in advance, John Park

    <HTML><TITLE>Welcome to EDMTalk!  Login or Register Now!!</TITLE><body><table border="0" width="75%" align="center" cellpadding="5" cellspacing="0" style="border-collapse: collapse;">	<tr>  <td width="20%" bgcolor="black"  valign="top">  <font face = "arial" color = "white" ><h1><i>EDM</i> Talk  <img src="discoball.gif" align="center">  </td>  <td width="%60"  valign="top" border="2" cellspacing="0"><font face="helvetica">  <font size="1">  <a href="http://www.denon.com/"><img src="cdj1000.gif"  align="right" border="0"></a><br>  Welcome to <i>EDM</i> Talk, a place dedicated for DJ's, Producers, or just avid fans of the music to discuss anything regarding the scene. etc...</body></html>

  13. Hello, I am a newbie on this site, hope to get a lot of great advice form all the gurus out there : :) Anyways, can anyone take a look at this code and tell me how to get rid of the gaps between the tables? Thanks in advance and again, great to be here!JohnCP

    <html><head><title> Page title</title></head><body><table width="75%" align="center" border="0"><tr><td width="100%" colspan="3" bgcolor="black"><font color = "white">  This is the heading or the top Row <br><br></td></tr><tr><td width="20%" bgcolor = "black"><font color = "white"> The left Column<br><br><br><br><br></td><td width="60%"> The center Column</td><td width="20%"> The right Column </td></tr></table>

×
×
  • Create New...