Search Results

Showing results 1 to 40 of 55
Search took 0.01 seconds.
Search: Posts Made By: Suetan
Forum: C++ Sep 11th, 2008
Replies: 5
Views: 769
Posted By Suetan
The problem was in my loop condition. I had it so that the loop stopped processing when the value of dayNum[i] was equal to yourDay. That was dumb of me, but thanks for all your help. ^_^
Forum: C++ Sep 11th, 2008
Replies: 5
Views: 769
Posted By Suetan
Actually, it didn't even stop the processing. It just continued, and didn't change the value of dayNum.
Forum: C++ Sep 11th, 2008
Replies: 5
Views: 769
Posted By Suetan
Thanks, I'll try that, but it'll stop it for both objects.
Forum: C++ Sep 11th, 2008
Replies: 5
Views: 769
Posted By Suetan
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...
Forum: IT Professionals' Lounge Mar 1st, 2008
Replies: 5
Views: 1,540
Posted By Suetan
You can still use JavaScript within PHP and HTML. On the output of your page you're going to want this:

<html>
<head>
<meta name="whatever" content="whatever">
...
Forum: IT Professionals' Lounge Mar 1st, 2008
Replies: 4
Views: 799
Posted By Suetan
Awardspace.com (http://www.awardspace.com) 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,...
Forum: PHP Feb 29th, 2008
Replies: 11
Views: 959
Posted By Suetan
Yeah, or we can just email back and forth. My email's takarne124@live.com. That way we're not struggling to catch each other online at the same time.
Forum: PHP Feb 29th, 2008
Replies: 11
Views: 959
Posted By Suetan
Hey, no problem. I'm just doing this in my free time. It's my first time tackeling something this big on my own. I could use a partner to help me out in their spare time if anyone's willing. If not,...
Forum: IT Professionals' Lounge Feb 29th, 2008
Replies: 77
Views: 29,920
Posted By Suetan
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...
Forum: PHP Feb 29th, 2008
Replies: 10
Views: 4,029
Posted By Suetan
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...
Forum: PHP Feb 29th, 2008
Replies: 11
Views: 959
Posted By Suetan
Sorry to bring this back on you guys. I've got some more code that I need to be double checked. I'm hoping that I've done everything right... please note that I'm going to have just about everything...
Forum: PHP Feb 28th, 2008
Replies: 7
Views: 873
Posted By Suetan
What you're saying is true. The page will have to be scrolled in some way.

One way that you can get the code to display without having to scroll down the entire page is by using the...
Forum: PHP Feb 28th, 2008
Replies: 6
Views: 593
Posted By Suetan
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...
Forum: PHP Feb 27th, 2008
Replies: 55
Views: 2,636
Posted By Suetan
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.

includes/sessions.php

<?php...
Forum: PHP Feb 27th, 2008
Replies: 11
Views: 959
Posted By Suetan
I found what you're talking out.

Corrected:

line #66 from
<td width="25%"><?php echo('<img src="'.$monster['monster_img']'" alt="'.$monster_name'">'); ?></td>

to
<td width="25%"><?php...
Forum: PHP Feb 27th, 2008
Replies: 11
Views: 959
Posted By Suetan
Ok, thanks for the help with index.php. I've changed that so that the HTML isn't echoed, and the mysql_guery() was correct.

I'm starting on functions.php, and here's what I have so far.
...
Forum: PHP Feb 26th, 2008
Replies: 11
Views: 959
Posted By Suetan
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?

<?php
/*
index.php
created by Suetan...
Forum: PHP Feb 26th, 2008
Replies: 3
Views: 1,329
Posted By Suetan
Here's a simple redirect script that you should be able to implement into your program:

if ($user->data['is_registered'])
{
redirect(append_sid("{$phpbb_root_path}index.$phpEx"));
}
...
Forum: PHP Feb 26th, 2008
Replies: 17
Views: 1,266
Posted By Suetan
Why don't you try it something like this:

<html>
<head>
<title>Cycle Tracks Portal</title>
<style type="text/css" media="all">@import "images/style.css";
</style>
<link rel="alternate"...
Forum: IT Professionals' Lounge Feb 19th, 2008
Replies: 12
Views: 4,366
Posted By Suetan
Thanks, I'll give them a shot.
Forum: IT Professionals' Lounge Feb 18th, 2008
Replies: 12
Views: 4,366
Posted By Suetan
I'm just wondering what online stores you guys use to buy new parts.

I've already checked out the following places:

http://www.tigerdirect.com
http://www.newegg.com (expensive)
...
Forum: Game Development Feb 18th, 2008
Replies: 21
Views: 7,660
Posted By Suetan
I've already declared the magic power with M + SPB = ATTACK_POWER;

which is basicly

magic_stat + spell_base_power = ATTACK_POWER

Ok... you guys just like messing with me, since I have a...
Forum: PHP Feb 8th, 2008
Replies: 3
Views: 2,985
Posted By Suetan
<?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
...
Forum: Networking Hardware Configuration Feb 8th, 2008
Replies: 1
Views: 619
Posted By Suetan
Try this:

Close all browser windows
Click START
Click on Run
Type in "cmd" without the quotes
Command prompt will open
Type the following in order
ipconfig
ipconfig/release
Forum: PHP Feb 8th, 2008
Replies: 8
Views: 5,281
Posted By Suetan
Try this:


<?php
$i = 0;
$image_id = '';
$image_path = '';
$td = 0;
echo('<tr>');
while($i <= 10)
Forum: PHP Feb 8th, 2008
Replies: 8
Views: 5,281
Posted By Suetan
This is how phpBB 3 gets images. Maybe it'll help you out.

/**
* Get user avatar
*
* @param string $avatar Users assigned avatar name
* @param int $avatar_type Type of avatar
* @param string...
Forum: PHP Feb 7th, 2008
Replies: 20
Views: 5,321
Posted By Suetan
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...
Forum: Networking Hardware Configuration Feb 7th, 2008
Replies: 2
Views: 1,646
Posted By Suetan
This should help you out.

http://windowshelp.microsoft.com/Windows/en-US/help/89adebd1-06a4-43ec-a33b-5964b436f96d1033.mspx

I don't have Vista, and I don't know all the ways around everything...
Forum: Networking Hardware Configuration Feb 7th, 2008
Replies: 9
Views: 1,495
Posted By Suetan
Hey, no problem. Just glad that we could help you out.
Forum: Networking Hardware Configuration Feb 7th, 2008
Replies: 8
Views: 1,124
Posted By Suetan
@DimaYasny
You're right, it could be a problem with the DNS settings, but from what I've seen businesses usually go through a hosting service that sets up your domain settings.

If it's the...
Forum: Networking Hardware Configuration Feb 7th, 2008
Replies: 9
Views: 1,495
Posted By Suetan
Your signal strength is going to change depending on how far away from the wireless router you are. This is normal. If you want to optimize it, I suggest that you get Iolo System Mechanic 7...
Forum: Networking Hardware Configuration Feb 7th, 2008
Replies: 8
Views: 1,124
Posted By Suetan
It doesn't matter who owns the domain. It's the filter that's gonna be stopping you.



companies put filters on their networks to stop web browsing. This prevents virus infections, spyware...
Forum: Networking Hardware Configuration Feb 7th, 2008
Replies: 8
Views: 1,124
Posted By Suetan
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...
Forum: Networking Hardware Configuration Feb 7th, 2008
Replies: 1
Views: 1,470
Posted By Suetan
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...
Forum: Networking Hardware Configuration Feb 7th, 2008
Replies: 9
Views: 1,495
Posted By Suetan
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...
Forum: Networking Hardware Configuration Feb 7th, 2008
Replies: 2
Views: 1,008
Posted By Suetan
Can we get some more details into this?

If you're using Windows XP, try this


Make sure that nobody is on the phone, and that all phones are working properly, make sure that all phones are...
Forum: HTML and CSS Feb 7th, 2008
Replies: 6
Views: 4,112
Posted By Suetan
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...
Forum: HTML and CSS Feb 7th, 2008
Replies: 5
Views: 2,497
Posted By Suetan
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

<div style="width:100px;line-height:19px; font-size:11px; font-weight:...
Forum: HTML and CSS Feb 7th, 2008
Replies: 5
Views: 753
Posted By Suetan
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.
...
Forum: Game Development Feb 6th, 2008
Replies: 21
Views: 7,660
Posted By Suetan
if (ATTACK_TYPE != ATTACK)
{
if (ATTACK_TYPE == MAGIC)
{
M + SBP = ATTACK_POWER;
ATTACK_POWER - MAGIC_DEFENSE = DAMAGE;
echo (DAMAGE);
...
Showing results 1 to 40 of 55

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC