Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 25 of 120
Search took 0.26 seconds.
Search: Posts Made By: MattClark
Forum: Looking for work/ for hire 03-01-2012, 03:52 AM
Replies: 2
Views: 1,190
Posted By MattClark
I would like to hire you for a java based...

I would like to hire you for a java based application. If you're still looking for work, PM me.
Forum: PHP 11-27-2011, 06:01 AM
Replies: 3
Views: 404
Posted By MattClark
ahh, so how should I go about including different...

ahh, so how should I go about including different files depending on screen resolution?
Forum: PHP 11-27-2011, 05:25 AM
Replies: 3
Views: 404
Posted By MattClark
PHP include inside Javascript

Hi, I'm trying to include one file if screen.width is > 1024, and another file if screen width is <=1024.

I'm trying:


<script type="text/javascript" language="javascript">if...
Forum: Java and JSP 11-26-2011, 01:06 AM
Replies: 0
Views: 278
Posted By MattClark
Questions About building P2P networks

Hi, I'm looking into learning more about Peer to Peer downloading, and hopefully building a simple p2p network for downloading. Is java a good language to use for this? Also, if anyone has...
Forum: MySQL 11-24-2011, 07:09 AM
Replies: 1
Views: 696
Posted By MattClark
Editing ft_min_word_length

Hi, quick question...is it possible to lower my mysql ft_min_word_length for full text indexes with a shared hosting platform?

Thanks!
Forum: PHP 11-18-2011, 08:22 PM
Replies: 6
Views: 792
Posted By MattClark
So there is no way to strip the tags AND not make...

So there is no way to strip the tags AND not make it consider the $movie_id as 0?

Sorry if my questions are redundant. I'm not exactly following 100%
Forum: PHP 11-18-2011, 05:32 AM
Replies: 12
Views: 610
Posted By MattClark
ahh, sorry about that. try changing include to...

ahh, sorry about that. try changing include to require_once. Also make sure if it's in different directory that you are also including that in your require.
Forum: PHP 11-18-2011, 05:15 AM
Replies: 12
Views: 610
Posted By MattClark
I would suggest you create a php database...

I would suggest you create a php database connectivity script and include it when you need it.
Forum: PHP 11-18-2011, 05:14 AM
Replies: 12
Views: 610
Posted By MattClark
You need to declare your database connection...

You need to declare your database connection variables.


$link = mysql_connect($server, $user, $pass);
Forum: PHP 11-18-2011, 05:12 AM
Replies: 6
Views: 792
Posted By MattClark
I don't follow 100%. You're saying that because...

I don't follow 100%. You're saying that because the injected input into url doesn't match the mod_rewrite it gives the 404? and there is no way of stripping the symbol from the url and forwarding...
Forum: PHP 11-17-2011, 11:28 PM
Replies: 5
Views: 336
Posted By MattClark
http://www.developphp.com/view.php?tid=1039&t=Pagi...

http://www.developphp.com/view.php?tid=1039&t=Pagination_Tutorial_for_PHP_MySQL_Programmers__Web_Intersect_Paging_Database_Results

This is the video tutorial I used to learn about pagination. ...
Forum: Apache configuration 11-17-2011, 11:20 PM
Replies: 2
Views: 936
Posted By MattClark
RewriteRule ^members/test$...

RewriteRule ^members/test$ members/member_test.php

I think that will work, try that.


Keep in mind, you have to direct them to members/test now in your code, instead of members/member_test.php.
Forum: PHP 11-17-2011, 10:33 PM
Replies: 6
Views: 792
Posted By MattClark
stopping SQL injections - mod rewrites

Hi, I just had a question about SQL injections on mod rewrites.

If I have a url:

http://www.sitenamehere.com/watch.php?movie_id=5'

and I use


if(isset($_GET['movie_id'])) {
Forum: Site reviews 11-17-2011, 10:05 PM
Replies: 13
Views: 1,169
Posted By MattClark
Thanks for the suggestions. I wasn't entirely...

Thanks for the suggestions. I wasn't entirely sure what to do with the <h2><a> situation, as I can't get firefox to pick up my styles correctly if I go <h2><a>, but if I go <a><h2> firefox picks up...
Forum: Site reviews 11-17-2011, 09:59 PM
Replies: 13
Views: 1,169
Posted By MattClark
ellaborate?

ellaborate?
Forum: PHP 11-17-2011, 03:06 AM
Replies: 2
Views: 447
Posted By MattClark
Make a date field and set them as now(). PHP...

Make a date field and set them as now().

PHP script that runs query to delete rows where current date is >7 days past the items date field.

You can run the PHP script as a cron job.
Forum: Site reviews 11-17-2011, 02:59 AM
Replies: 13
Views: 1,169
Posted By MattClark
Any other opinions? Constructive criticism more...

Any other opinions? Constructive criticism more than welcome
Forum: Site reviews 11-14-2011, 04:21 AM
Replies: 13
Views: 1,169
Posted By MattClark
Alright, thanks for the suggestion!

Alright, thanks for the suggestion!
Forum: Site reviews 11-14-2011, 03:38 AM
Replies: 13
Views: 1,169
Posted By MattClark
just out of curiosity....did you click on a link...

just out of curiosity....did you click on a link and still have confusion? or did you just sit at home page confused? Trying to figure out how I want to go about this.
Forum: Site reviews 11-14-2011, 03:33 AM
Replies: 13
Views: 1,169
Posted By MattClark
It lets you watch movies for free. I'll add in a...

It lets you watch movies for free. I'll add in a description section, though. Good suggestion, thanks!
Forum: PHP 11-13-2011, 09:14 AM
Replies: 10
Views: 1,632
Posted By MattClark
Also, ereg_replace is deprecated. Try switching...

Also, ereg_replace is deprecated. Try switching to preg_replace. That'll get rid of one of those errors too!
Forum: PHP 11-13-2011, 09:08 AM
Replies: 10
Views: 1,632
Posted By MattClark
You need to move $verified_user =...

You need to move


$verified_user = $_SESSION['verified_user'];


above


if ($verified_user) {
Forum: HTML & CSS 11-13-2011, 07:03 AM
Replies: 4
Views: 339
Posted By MattClark
ahh, thank you so much for the link :)

ahh, thank you so much for the link :)
Forum: Apache configuration 11-13-2011, 06:41 AM
Replies: 0
Views: 830
Posted By MattClark
Incredibly Confused on Mod-Rewrites

Hi,

I'm trying to redirect

http://www.sitenamehere.com/watch.php?movie_id=($phpvariable here)

to

http://www.sitenamehere.com/watch/movie/($phpvariable here)
Forum: HTML & CSS 11-13-2011, 05:40 AM
Replies: 4
Views: 339
Posted By MattClark
Question Dealing with meta description/keywords

I'm trying to get my site page rank up in google. It's a site where you can watch movies for free. Is this description/keyword set stuffed so much that it will cause me to be penalized? If so, how...
Showing results 1 to 25 of 120

 
Forum Jump

All times are GMT +1. The time now is 07:43 PM.