- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
Freelance Computer technician
- PC Specs
- Processor: AMD Phenom II x6 Black Edition 1090T @3.2Ghz Motherboard: Asus M4A79XTD EVO RAM: AENEON 2GB…
38 Posted Topics
Re: Playstation uses C++ XBOX uses C# Windows uses either | |
Re: This belongs in mobile developement | |
Okay, so here's the deal: I suck with forms and generating dynamic links. Here's the code that I'm working on [CODE=html]<div class="Normal_P"> <span class="Normal_C"> <form action="<?php getLink("http://www.atouchofmoore.net/certificate_stage3.php" array( <?php[/CODE] [CODE=php]if(mysql_num_rows($r) > 0) { while($d = mysql_fetch_array($r)) { $options .= "\n\t<option value=\"{$d[2]}\">{$d[1]}: {$d[2]}</option>"; } } for($x=0;$x<$cert_num;$x++) { $cert = ($x+1); $get_data['cert"$x"'] = … | |
Re: w3schools.com You can also download Microsoft Visual Web Developer Express for free from [url]http://www.microsoft.com/express[/url] and that program has some great guides to help you out. Just remember that HTML alone only does the layout of the content. It does not generate any special effects or manage any data that your … | |
Re: in your form tag, you should be using something like this: [CODE=HTML]<form method="post" action="login.php"> Username: <input type="text" name="username" /><br /> Password: <input type="password" name="password" /><br /> <input type="submit" onclick="this.form.submit" />[/CODE] Then in your login.php file you want something like this: [CODE=PHP] <?php $username = $_post["username"]; $password = $_post["password"]; $sql = … | |
Here's my problem. I have a program that integrates HTML with PHP script by ending the PHP, and going with straight HTML code, and then going back to PHP. This should be all well and done, except for the part where after I start the PHP script, it doesn't display … ![]() | |
Re: As everyone else is telling you, coding the pages yourself is going to be the best way to get what you want. WYSIWYG editors don't like to have things stacked. They tend to go from one straight to the next. | |
Re: You could also do something like this: [CODE=PHP] $con = mysql_connect($dbuser, $dbpass, $dbhost, client_flags = 0, new_link = false); if (!con) { echo "Database Error"; die(mysql_error()); } mysql_select_db($dbname, $con); ?> Your search for site form goes here <?php $sql = "SELECT * FROM sites WHERE siteName = '$_GET["siteName"]'"; $result = … | |
Re: This is how phpBB 3 gets images. Maybe it'll help you out. [CODE=PHP]/** * Get user avatar * * @param string $avatar Users assigned avatar name * @param int $avatar_type Type of avatar * @param string $avatar_width Width of users avatar * @param string $avatar_height Height of users avatar * … | |
Re: I'm a devigner with more skills in the development area. I know how to work with Photoshop and Image Ready, but I'm no expert with them. I use PHP with MySQL. I'm currently working on changing the way my personal website works (thanks to Nav33n for helping me with debugging … | |
Re: You can't create a database within a database. But you can create new tables within your database that have a different table prefix so that it will work like a different database. All you have to do is make all your tables with a different table prefix. I did this … | |
![]() | Re: [QUOTE=Geek-Master;509785]I would really like for this thread to discuss all aspects of "RPG math" i.e.(Attack, Magic, Defense, Magic Defense, Agility, etc...) So lets start off with Attacking. I am going to dismiss what the targets defense stats are and just think about raw attack power. So what are the elements … |
Here's my problem. I'm writing a program that has the user input a string. That string is then compared to the values in a string array within a class. Here's a sample of what I'm trying to do (sorry about the spacing. I use tabs, not spaces): This is my … | |
Re: I'll check it out, and see what I can come up with to help you out. I'll try debugging it, as well. Please note that my knowledge in C++ is limited, but I'm starting college on March 3rd for video game programming. I'll let you know if I come up … | |
Re: You can still use JavaScript within PHP and HTML. On the output of your page you're going to want this: [CODE=HTML]<html> <head> <meta name="whatever" content="whatever"> <title>Your Title</title> <link rel="stylesheet" type="text/css" href="style.css"> <script language="JavaScript" type="text/javascript"> scriptstring; </script> </head> <body> your content </body> </html>[/CODE] | |
Re: I've checked it out, and it looks fine to me. I'm using IE7 with 1024*768 Screen resolution. If you've got it set up so that it's fluid, you might want to make it static. With it having a static width, there shouldn't be a problem due to the user's screen … | |
I'm just wondering what online stores you guys use to buy new parts. I've already checked out the following places: [LIST][*][url]http://www.tigerdirect.com[/url] [*][url]http://www.newegg.com[/url] (expensive) [*][url]http://www.outletpc.com[/url] [*][url]http://www.geeks.com[/url] [/LIST] If you guys have any other places that'll help me shorten my search time please let me know. | |
Re: Since you're planning on having this be text based w/o a turn system I'd use either C++ or PHP. You can have PHP work in a live environment with seemless refreshes, but it's difficult to do. C++ is designed better for this type of thing, but PHP is based off … | |
Re: [URL="http://www.awardspace.com"]Awardspace.com[/URL] is pretty decent, I know that they support PHP. I'm not sure about ASP though. There's no banner ads or anything, and they're a free host. I use them, myself. | |
Re: I see how the links will work, but where are you pulling the information from the database. You're going to need an SQL command to pull the information so that it goes into your link. It could be something simple like: [CODE=PHP] <?php $sql = "SELECT 'site_name, link_text, url' FROM … | |
This is just something that I'm working on for my own website. Could someone please check this over real quick to see if I have any major errors in it? [CODE=PHP]<?php /* index.php created by Suetan Start Date: Wednesday January 9, 2008 Project: RPGCMS Version: 0.0.1a */ define('IN_RPGCMS', true); $root … | |
Re: [QUOTE=nav33n;547619]Say if the output is of 2 pages. Then how can you output everything in 1 page ? You can specify the width and height of the page, but if the output is more, I dont think you can avoid scroll.[/QUOTE] What you're saying is true. The page will have … | |
Re: When one is lost, seek help... When help is lost, refer to Open Source code that works (^_^) This is how phpBB does their sessions in phpBB 2.0.23. [COLOR="Red"]includes/sessions.php[/COLOR] [CODE=PHP] <?php /*************************************************************************** * sessions.php * ------------------- * begin : Saturday, Feb 13, 2001 * copyright : (C) 2001 The phpBB … | |
Re: Here's a simple redirect script that you should be able to implement into your program: [code=PHP]if ($user->data['is_registered']) { redirect(append_sid("{$phpbb_root_path}index.$phpEx")); } login_box(request_var('redirect', "index.$phpEx")); [/code] And here's the function to go with it. [CODE=PHP]function login_box($redirect = '', $l_explain = '', $l_success = '', $admin = false, $s_display = true) { global $db, … | |
Re: [QUOTE=lordx78;543982][code=php] <html> <head> <title>Cycle Tracks Portal</title> <style type="text/css" media="all">@import "images/style.css"; </style> <link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="rss/" /> <?php $date_curr = date('l dS F Y'); ?> </head> <body> <div class="content"> <div class="topmenu"> <div class="date_"> <?php echo $date_curr; ?> </div> </div> [/code] Still not working.[/QUOTE] Why don't you try it something … | |
Re: You might want to try this: replace this [CODE=HTML]<P ALIGN=CENTER><img src="house.jpg"></P>[/CODE] with this [CODE=XHTML]<br /><img src="http://{URL_OF_YOUR_PAGE}/house.jpg" align="center" alt=""><br />[/CODE] Since XHTML is the W3C standard now, you might want to convert it to XHTML. It's not hard to do at all. If you need to learn XHTML, go to [URL]http://www.w3schools.com[/url] … | |
Re: This should help you out. [url]http://windowshelp.microsoft.com/Windows/en-US/help/89adebd1-06a4-43ec-a33b-5964b436f96d1033.mspx[/url] I don't have Vista, and I don't know all the ways around everything in it. That's why I'm referring you to the Microsoft site. | |
Re: [CODE=PHP] <?php $sql = "SELECT 'p.player_id, p.last_name, p.first_name, s.sport, p.grad_yr, l.city, l.state, p.gender' FROM ' . PLAYER_TABLE . ' p, ' . SPORT_TABLE . ' s, ' . LOCAL_TABLE . ' l WHERE p.last_name = $ln AND p.first_name = $fn AND s.sport = $ps AND l.city = $cy AND l.state … | |
Re: Going by the images that were in your attachment, it looks to me like your CSS files weren't uploaded to the server. I'm saying this because you have all the images that would be in the page from hard coding, but your background images aren't showing up. Try uploading your … | |
Re: Try this: [list=1][*]Close all browser windows [*]Click START [*]Click on Run [*]Type in "cmd" without the quotes [*]Command prompt will open [*]Type the following in order [list=1][*]ipconfig [*]ipconfig/release [*]ipconfig/renew [/list] [*]Close command prompt (ALT+F4) [*]Try loading several webpages at the same time while connected to AIM [/list] If that doesn't … | |
Re: When you formatted your computer, you got rid of all the information that was on it. So the computer won't be able to call up the network information. Get all of your network information from another computer that's on your network, and then you'll have to go through the network … | |
Re: A lot of companies don't want their employees going on the internet with their hardware unless it's for work. The best way to save your job is to check your website at home. If you go and mess with company computers, then there's a very good chance that you will … | |
Re: I agree, the tables would be a better setup than divs. But if you want to stick with the divs, you might want to try this [CODE=HTML]<div style="width:100px;line-height:19px; font-size:11px; font-weight: bold;"> <font align="left"> <a href="{$smarty.const.DOC_ROOT}/livepagerank.php?pr={$PR.PR}" title="{l}Browse pagerank {$PR.PR} links{/l}"><img align="left" src="/images/pr{$PR.PR}.gif" border="0" alt="{l}Browse pagerank {$PR.PR} links{/l}" />{$PR.COUNT|indent}</a> </font> </div> <div … | |
Re: Make sure that your parental controls with your ISP are set to let you view all web pages. Allow the sites that you're trying to access to go through your firewall. Do not block any sites with your anti-virus (some anti-virus programs do block webpages that are known to potentially … | |
Re: Can we get some more details into this? If you're using Windows XP, try this [LIST=1] [*]Make sure that nobody is on the phone, and that all phones are working properly, make sure that all phones are properly hung up [*]Right Click on My Computer [*]Choose Properties [*]Click the Hardware … | |
Re: When I do code I use Notepad, Notepad++ or Wordpad. I've tried it in Word when I first started doing web design, and I had the same problem. If you need to download Notepad++ here's the link. [url]http://sourceforge.net/projects/notepad-plus/[/url] When you download Notepad++, you'll see how it really can help you … |
The End.