Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 25 of 145
Search took 0.32 seconds.
Search: Posts Made By: nobackseat88
Forum: Domains for sale 12-09-2012, 04:19 PM
Replies: 9
Views: 6,567
Posted By nobackseat88
Hello, Thanks for your interest. All...

Hello,

Thanks for your interest.

All domains listed are still available. I don't have a set price in mind, could you offer what you think is fair?

Thanks again,

NBS
Forum: Domains for sale 08-15-2012, 06:46 PM
Replies: 9
Views: 6,567
Posted By nobackseat88
@mikenormal, Yup they're all available. ...

@mikenormal,

Yup they're all available.

Thanks,

NBS
Forum: Domains for sale 05-30-2012, 08:01 PM
Replies: 9
Views: 6,567
Posted By nobackseat88
Hello, I apologize for the late reply. Yes,...

Hello,

I apologize for the late reply. Yes, please PM your offers.

Yes I have acquired more domains since. They are:

ILikeTo.net
ModernHoster.com
Sensationless.com
SlowestPC.com
Forum: Domains for sale 04-30-2012, 03:20 AM
Replies: 9
Views: 6,567
Posted By nobackseat88
9 Domains for Sale - Make Offers!

1) Domains for sale:

VirtuallyMine.net
LifePit.com
SmugNet.com
Populister.com
Killinator.com
MayEarn.com
Iciclue.com
Infusual.com
Forum: Domains for sale 10-31-2011, 04:30 PM
Replies: 0
Views: 1,056
Posted By nobackseat88
VirtuallyMine.net Selling!

1) Domain for sale: VirtuallyMine.net

2) Registrar domain is registered at: NameCheap (so it comes with WhoisGuard!)

3) Asking Price (or if auction, starting bid plus end time in days):...
Forum: MySQL 07-15-2011, 07:11 PM
Replies: 7
Views: 1,215
Posted By nobackseat88
No, no, you still use mysql_query( $sql ); ...

No, no, you still use

mysql_query( $sql );

to execute your SQL.

The function I gave in my previous post is just a function that returns an escaped value. That value can then be placed into...
Forum: MySQL 07-15-2011, 09:02 AM
Replies: 7
Views: 1,215
Posted By nobackseat88
Assuming you're using MySQL, use ...

Assuming you're using MySQL, use

mysql_real_escape_string( $_GET[ 'var' ] );

on each and every user input you plan on placing into a query.

SQL Injection allows users to execute SQL...
Forum: PHP 07-15-2011, 08:42 AM
Replies: 3
Views: 310
Posted By nobackseat88
Hello, 1) Check for any output before where...

Hello,

1) Check for any output before where the cookies are being sent. There can't even be a space.

2) If all of this is being done on the same domain/sub-domain then you should be fine.
...
Forum: HTML & CSS 07-14-2011, 08:52 AM
Replies: 13
Views: 923
Posted By nobackseat88
YES! This is perfect. So simple too. ...

YES! This is perfect. So simple too.

Thanks so much. :thumbsup:

(and thanks everyone else too for your replies)

NBS
Forum: HTML & CSS 07-13-2011, 02:33 AM
Replies: 13
Views: 923
Posted By nobackseat88
Thanks for the replies. Your links aren't what...

Thanks for the replies. Your links aren't what I'm looking for. I need it to be a div, and I need it exactly in the top left corner. If I just left aligned it, it would move according to how much...
Forum: PHP 07-12-2011, 09:06 PM
Replies: 27
Views: 25,370
Posted By nobackseat88
Don't forget $_COOKIE. In fact, I personally...

Don't forget $_COOKIE. In fact, I personally would replace it with $_SESSION. Most of the time people know what data they are placing into $_SESSION so it shouldn't be a problem there.

I would...
Forum: HTML & CSS 07-12-2011, 08:57 PM
Replies: 13
Views: 923
Posted By nobackseat88
Not just a 'white box'... it's a div, so I'll be...

Not just a 'white box'... it's a div, so I'll be putting an image (think a stamp) or text. I want the text in the outer div to go around the 'white box'.

Thanks.

NBS
Forum: HTML & CSS 07-12-2011, 07:29 PM
Replies: 13
Views: 923
Posted By nobackseat88
Div top left aligned inside div with aligned overflow

Hi everyone. This is basically what I am trying to achieve.

http://i51.tinypic.com/1znv0o4.png

I have got the div in the top left corner done, but I can't get the text to overflow. This is...
Forum: MySQL 04-23-2011, 06:00 AM
Replies: 3
Views: 1,231
Posted By nobackseat88
A database can be downloaded via SQL Injection...

A database can be downloaded via SQL Injection too.

NBS
Forum: Apache configuration 04-10-2011, 05:53 AM
Replies: 0
Views: 543
Posted By nobackseat88
.htaccess rewrite help (I have a good code start)

Hello everybody.

I want a super flexible .htaccess rewrite that allows me to change

http://test.com/news.php?p=1

to

http://www.test.com/news/1
Forum: Other server side languages/ issues 04-06-2011, 02:42 AM
Replies: 0
Views: 987
Posted By nobackseat88
CVS Help

So I'm starting a rather large project and I decided that I really need to look into CVS this time around, as I have no experience with it yet, and have heard nothing but great comments about it. ...
Forum: PHP 03-13-2011, 10:21 PM
Replies: 7
Views: 490
Posted By nobackseat88
<?php mysql_connect("localhost", "root", "") or...

<?php
mysql_connect("localhost", "root", "") or die(mysql_error());
mysql_select_db("chat") or die(mysql_error());
$q = mysql_query("SELECT * FROM `members` WHERE...
Forum: PHP 03-13-2011, 10:02 PM
Replies: 7
Views: 490
Posted By nobackseat88
You aren't fetching the results in an array. ...

You aren't fetching the results in an array.

Try this.


<?php
mysql_connect("localhost", "root", "") or die(mysql_error());
mysql_select_db("chat") or die(mysql_error());
$q =...
Forum: PHP 03-13-2011, 10:00 PM
Replies: 3
Views: 1,722
Posted By nobackseat88
http://www.php.net/manual/en/function.in-array.php...

http://www.php.net/manual/en/function.in-array.php#97465

This post and the one below it offer solutions.

NBS
Forum: PHP 03-11-2011, 09:35 PM
Replies: 12
Views: 1,455
Posted By nobackseat88
As with any function, of course particular...

As with any function, of course particular aspects of it can go wrong; I was simply pointing out a potential approach to use, at the original poster's discretion.

NBS
Forum: PHP 03-11-2011, 09:30 PM
Replies: 12
Views: 1,267
Posted By nobackseat88
Use tiger192,4. I use it every time I need...

Use tiger192,4.

I use it every time I need to hash passwords, it is great.

Like stated, MD5 is just god awful, and SHA1 is quite old too.

You can store salts in the database, or in the file,...
Forum: PHP 03-11-2011, 03:10 AM
Replies: 12
Views: 1,455
Posted By nobackseat88
Not quite... you can use sleep() to do the delay,...

Not quite... you can use sleep() to do the delay, but use flush() before each sleep() so that it instantly sends the output to the browser.

NBS
Forum: PHP 02-16-2011, 11:02 PM
Replies: 2
Views: 549
Posted By nobackseat88
The issue is that you are using single quotes in...

The issue is that you are using single quotes in the query. Variables don't parse in single quotes.

So you query is literally sending the text $gbid as the ID to look for. Not its value.
...
Forum: PHP 02-13-2011, 07:51 PM
Replies: 6
Views: 667
Posted By nobackseat88
I think your ORDER BY syntax is wrong. ...

I think your ORDER BY syntax is wrong.

SELECT * FROM t1
ORDER BY key_part1 DESC, key_part2 DESC;

NBS
Forum: PHP 02-13-2011, 01:31 AM
Replies: 3
Views: 422
Posted By nobackseat88
Hello DG Kim, My favorite quote... I...

Hello DG Kim,

My favorite quote...


I highly recommend you use a secure and reliable HTML filter library, such as HTML Purifier (http://htmlpurifier.org/).

But that doesn't answer your...
Showing results 1 to 25 of 145

 
Forum Jump

All times are GMT +1. The time now is 06:15 PM.