Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 25 of 173
Search took 0.56 seconds.
Search: Posts Made By: Anishgiri
Forum: PHP 05-02-2013, 08:34 AM
Replies: 14
Views: 222
Posted By Anishgiri
I think you missed this post. It appears I...

I think you missed this post.

It appears I spoke too soon this DB Error: Got error 28 from storage engine still pops out( a while a go this does not appear, now it appears again)

I use this...
Forum: PHP 05-02-2013, 03:21 AM
Replies: 14
Views: 222
Posted By Anishgiri
It appears I spoke too soon this DB Error: Got...

It appears I spoke too soon this DB Error: Got error 28 from storage engine still pops out( a while a go this does not appear, now it appears again)

I use this code echo shell_exec('df -h');,...
Forum: PHP 05-02-2013, 02:02 AM
Replies: 14
Views: 222
Posted By Anishgiri
It's really a session problem, finally solved the...

It's really a session problem, finally solved the problem with this. I just created a new temp folder.

$your_path = '/home/insertname/public_html/temp';
ini_set('session.save_path', $your_path...
Forum: PHP 05-01-2013, 04:19 AM
Replies: 14
Views: 222
Posted By Anishgiri
I don't know if we are on shared host. DB server...

I don't know if we are on shared host. DB server running out of space? But I also got these warning when i try to use session in a script.

Warning: Unknown: write failed: No space left on device...
Forum: PHP 05-01-2013, 04:06 AM
Replies: 14
Views: 222
Posted By Anishgiri
I don't why tmp will have access permission...

I don't why tmp will have access permission problem. because before there is no problem like this?

DB Error: Got error 28 from storage engine when I open our website.. Session problem is the cause...
Forum: PHP 05-01-2013, 03:56 AM
Replies: 14
Views: 222
Posted By Anishgiri
I am wondering why a tmp folder will have space...

I am wondering why a tmp folder will have space shortage, when sessions are destroyed on specific time? In cpanel, you can't clear this tmp folder right? This session storage shortage will also make...
Forum: PHP 05-01-2013, 03:43 AM
Replies: 14
Views: 222
Posted By Anishgiri
If it's space problem,creating a new temp folder,...

If it's space problem,creating a new temp folder, then putting that into session.save_path in php.ini, will work also right, so that you don't have to use the built in function of php right?
Forum: PHP 04-30-2013, 07:28 AM
Replies: 14
Views: 222
Posted By Anishgiri
session question

When you create a session even if you use session destroy, or close the browser, the session id on tmp folder will not be deleted right?

I ask these questions, because I encounter this when I use...
Forum: PHP 04-19-2013, 02:01 AM
Replies: 1
Views: 154
Posted By Anishgiri
Limit Concurrent User Access

Let say 8 people share/use the same user login access. Now I want to limit the simultaneous login of the same user access to five. What's a good idea to do this?
Forum: PHP 04-08-2013, 04:50 AM
Replies: 5
Views: 139
Posted By Anishgiri
Ok I solve it,thanks I put a quote in my...

Ok I solve it,thanks

I put a quote in my insert statements, sometimes I am really forgetful of these syntax/rules

mysql_query("INSERT INTO table_name(ip_string)
VALUES('$ip2')");
Forum: PHP 04-08-2013, 04:46 AM
Replies: 5
Views: 139
Posted By Anishgiri
Now if I try to put single or double quote like...

Now if I try to put single or double quote like this
$ip2='219.90.90.2';
the error will be gone, but it will not insert into the data base. What is the problem?
Forum: PHP 04-08-2013, 04:28 AM
Replies: 5
Views: 139
Posted By Anishgiri
Parse Error When I try to Insert an IP

Why do I get this parse error message when I try to insert an ip into the data base.



Below is my code

$ip2=219.90.90.2;
$ip2=mysql_real_escape_string($ip2);

mysql_query("INSERT INTO...
Forum: HTML & CSS 04-05-2013, 06:32 AM
Replies: 2
Views: 156
Posted By Anishgiri
Pho gallery difference in height

http://i5.photobucket.com/albums/y154/reno_of_the_turks/pics2_zps6b69d5eb.jpg

I am trying to create an image gallery. As you can see in the image why is that the right image has more height? Even...
Forum: Computer/PC discussions 03-21-2013, 04:50 AM
Replies: 3
Views: 640
Posted By Anishgiri
IP addresses questions

Am I correct?Let say in an office, your internet provider gave you a static ip. It mean each computer in your network will share that same static ip address that your provided gave? That if you check...
Forum: PHP 03-19-2013, 03:47 AM
Replies: 2
Views: 215
Posted By Anishgiri
Import Question

import('handler.validation.HandlerValidator');

I can't get the path of the code above. Why there is period?
Forum: PHP 03-15-2013, 10:18 AM
Replies: 2
Views: 130
Posted By Anishgiri
array question

I have been trying, but I can't produce what I want. Suppose I have these arrays.


$title[0]['platter']="title 1";
$title[1]['platter']="title 2";
$cont[0]['platter']="cont 1";...
Forum: PHP 02-27-2013, 03:28 AM
Replies: 11
Views: 455
Posted By Anishgiri
So let say I really have huge data. What is a...

So let say I really have huge data. What is a good solution for this memory problem?
Forum: PHP 02-27-2013, 01:09 AM
Replies: 11
Views: 455
Posted By Anishgiri
I want to clarify, so you are suggesting that...

I want to clarify, so you are suggesting that there are other programs that uses lots of memory in the server that I use?

@rgb- Yeah it seems using MYSQL_ASSOC with mysql_fetch_array is good idea.
Forum: PHP 02-26-2013, 12:40 AM
Replies: 11
Views: 455
Posted By Anishgiri
This the error. Allowed memory size of...

This the error.

Allowed memory size of 134217728 bytes exhausted (tried to allocate 35 bytes) in /var/www/projection/projection/matdel_update2.php on line 40.

I solved this with...
Forum: PHP 02-25-2013, 09:14 PM
Replies: 11
Views: 455
Posted By Anishgiri
Yeah you are right. I don't know what I am...

Yeah you are right. I don't know what I am thinking when I put that escape string. @Arcticwarrio and @ Fou Regarding the isbn it's actually a valid offset. If I remove the comment of isbn and...
Forum: PHP 02-25-2013, 07:20 AM
Replies: 11
Views: 455
Posted By Anishgiri
I can't undertsand why this is occuring

<?php
include('includes/config.php');
$isbn=array(); $ean11=array();$inc2=0;
$db_name2='mpmp';
mysql_select_db($db_name2);

$sql="SELECT EAN11 from ttt";
$result=mysql_query($sql);
...
Forum: HTML & CSS 02-22-2013, 12:56 AM
Replies: 7
Views: 423
Posted By Anishgiri
I use your code. I change the margin to left with...

I use your code. I change the margin to left with 55px. It did not change anything.

<html>
<head>
<style type="text/css">

table {border: 1px #000 solid; width:400px;}
.col1...
Forum: HTML & CSS 02-21-2013, 01:40 PM
Replies: 7
Views: 423
Posted By Anishgiri
Below I change the margin right from 25px to...

Below I change the margin right from 25px to 45px. It did not change the layout. I also change from margin right to left, it did not change the layout. Why is that so? I know putting a span style...
Forum: HTML & CSS 02-21-2013, 01:25 AM
Replies: 7
Views: 423
Posted By Anishgiri
Table Question

I have tabulated data of beverages with price and beverage. I need to position the price at far right. I don't know if I am doing it right with tables, I used mant td. Below is my code.

<table ...
Forum: PHP 02-19-2013, 12:57 AM
Replies: 7
Views: 330
Posted By Anishgiri
Pardon for not clear example what I mean is...

Pardon for not clear example what I mean is $string="blablablabla http://website.com/aa/facade.JPG blablablabla". I need to extract the url from this. I already found a regular expression.
...
Showing results 1 to 25 of 173

 
Forum Jump

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