Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 25 of 476
Search took 1.19 seconds.
Search: Posts Made By: Chris Hick
Forum: Computer Programming 09-28-2012, 11:57 PM
Replies: 0
Views: 478
Posted By Chris Hick
vector subscript out of range

Alright, I am having trouble with my program. It is a pretty large program. When I go to debug it and build it, it throws a vector subscript out of range error window on the screen. I looked through...
Forum: PHP 09-13-2012, 05:44 PM
Replies: 1
Views: 429
Posted By Chris Hick
CodeIgniter Controller issue

Okay, I have a controller called Site.

<?php

class Site extends CI_Controller
{
public $page_data;
function __construct()
{
parent::__construct();
Forum: PHP 09-08-2012, 05:48 PM
Replies: 2
Views: 584
Posted By Chris Hick
The issue was that I needed to pass create a new...

The issue was that I needed to pass create a new config variable called uri_segment.
Forum: PHP 09-08-2012, 07:39 AM
Replies: 2
Views: 584
Posted By Chris Hick
CodeIgniter Pagination

Okay, for some reason my pagination shows up but is always showing 1 as the selected page, yet when you click on any of the other links it shows the correct data. Then, when you select the next page...
Forum: MySQL 09-07-2012, 01:12 AM
Replies: 2
Views: 755
Posted By Chris Hick
Sorry, I am just now getting on. I have figured...

Sorry, I am just now getting on. I have figured out how to do it and return the result that I like. The only issue I have is that it always returns information even when there is no data to be...
Forum: MySQL 09-06-2012, 03:12 AM
Replies: 2
Views: 755
Posted By Chris Hick
Correct syntax for getting information from two tables

I know this is possible and I've done it quite often in the past. But I haven't used MySQL in months(been doing some C++ work. Not that it has anything to do with C++.) Anyhow, what I have is two...
Forum: PHP 08-17-2012, 12:07 AM
Replies: 3
Views: 305
Posted By Chris Hick
File not finding Class

Okay, so I have an initialize file that is in charge of including all of my classes.

<?php
// load config file first
require_once('config.php');

// load basic functions next so that...
Forum: PHP 08-12-2012, 10:19 PM
Replies: 2
Views: 350
Posted By Chris Hick
Any one have any luck with this??

Any one have any luck with this??
Forum: MySQL 08-12-2012, 10:11 PM
Replies: 2
Views: 596
Posted By Chris Hick
MySql is saying I have an apostrophe when I don't

This is my insert query:

INSERT INTO characters (id, user_id, class_id, first_name, last_name, sex, level, character, experience) VALUES ('', '2', '5', 'The Gavin', 'Arulieus', '0', '1', '0',...
Forum: PHP 08-09-2012, 06:16 AM
Replies: 2
Views: 350
Posted By Chris Hick
SmartyValidate filling form values after submission

So, apparently, the SmartyValidate forums are no longer active so I thought I would see if anyone knows how to fill the form fields after a validation returns false???
Forum: PHP 07-29-2012, 06:00 AM
Replies: 1
Views: 352
Posted By Chris Hick
smartyValidate

Okay, so I have started using the smarty validate class for validating forms for a website that uses the smarty template engine. It says on the smarty validate page that one can use multiple...
Forum: Computer/PC discussions 06-02-2012, 11:35 PM
Replies: 12
Views: 1,411
Posted By Chris Hick
I've been using Windows 8 for a few weeks now and...

I've been using Windows 8 for a few weeks now and its relatively easy. As far as to shut it down,restart, etc. you just move your mouse to the top right hand corner of the screen then a menu appears...
Forum: PHP 05-27-2012, 02:24 AM
Replies: 2
Views: 412
Posted By Chris Hick
Bleh, I cannot believe I did not see that I had...

Bleh, I cannot believe I did not see that I had the construct spelled wrong -_- I hate when I make errors like this.
Forum: PHP 05-27-2012, 02:12 AM
Replies: 2
Views: 412
Posted By Chris Hick
Design Patterns Experiment

Alright, so I've been doing some experimenting with using design patterns with my php classes. I have run into a little trouble here. It is giving me an error saying that "Call to a member function...
Forum: PHP 05-13-2012, 11:05 PM
Replies: 3
Views: 307
Posted By Chris Hick
General Object Oriented question

Would it be better to store a user error in a single class instace of an error class? Such as an error class that had an array as its member and then store each of the messages in that array in that...
Forum: PHP 05-07-2012, 09:44 PM
Replies: 3
Views: 244
Posted By Chris Hick
I don't see how that is the issue. I am including...

I don't see how that is the issue. I am including them correctly.
root is the base directory then inside root are two directories, public_html and privateSettings then inside privateSettings is an...
Forum: PHP 05-07-2012, 05:51 AM
Replies: 3
Views: 244
Posted By Chris Hick
Htaccess

I keep running into this problem with a friends site. It seems like everything time I try to access my database table through my class in the file which is directly under the public_html directory,...
Forum: PHP 05-05-2012, 11:25 PM
Replies: 11
Views: 620
Posted By Chris Hick
You can still separate logic from presentation...

You can still separate logic from presentation here as well. ;) example my friend

Logic

/**
* Returns Online Status Indicator Markup
*
* Takes User's Last Activity and...
Forum: Computer Programming 04-29-2012, 06:50 PM
Replies: 5
Views: 588
Posted By Chris Hick
Here let me give you an example. car.h ...

Here let me give you an example.

car.h
#ifndef CAR_H
#define CAR_H
class Car {

public:
Car(int number)
{
Forum: Computer Programming 04-28-2012, 10:18 PM
Replies: 5
Views: 588
Posted By Chris Hick
You have got yourself confused. If you are...

You have got yourself confused. If you are wanting to make something virtual you should you place the virtual in front of the base class function and the derived class that inhierts it will us the...
Forum: MySQL 04-24-2012, 01:31 AM
Replies: 1
Views: 493
Posted By Chris Hick
Using mysql with C++

I'm having trouble trying to find a good documentation about using c++ with mysql. Does anyone have any ideas where I can look?
Forum: Computer Programming 04-23-2012, 01:40 AM
Replies: 2
Views: 678
Posted By Chris Hick
c++ game for practice

I have recently started learning C++, I am a decent programmer with a major skill in php. I decided that in order to test out my skills I wanna develop a small game for the fun of it.
I have the...
Forum: PHP 04-07-2012, 07:56 PM
Replies: 4
Views: 322
Posted By Chris Hick
That is simple. The err array in the function is...

That is simple. The err array in the function is in local scope meaning once the function is done it is deleted. I suggest returning the array.
Forum: PHP 03-24-2012, 03:02 AM
Replies: 4
Views: 379
Posted By Chris Hick
well, you could use three tables for this. I say...

well, you could use three tables for this. I say a persons table with an id as primary, first name, last name, and parent as a boolean value. Another table called children with a primary id which is...
Forum: PHP 03-23-2012, 11:24 PM
Replies: 6
Views: 559
Posted By Chris Hick
Here is a simple flexible getter class I created....

Here is a simple flexible getter class I created. It'll help you out.

http://www.codingforums.com/showthread.php?t=254451
Showing results 1 to 25 of 476

 
Forum Jump

All times are GMT +1. The time now is 11:55 AM.