---
title: "mysql_fetch_array() problem?"
type: "forum-thread"
url: "https://www.webforum.nu/amne/php/187152-mysql-fetch-array-problem"
topic: "PHP"
topic_url: "https://www.webforum.nu/amne/php"
author: "Dr-man"
published: "2011-06-15T08:00:03.000Z"
updated: "2011-06-15T08:09:57.000Z"
replies: 1
views: 768
page: 1
pages: 1
language: "sv-SE"
site: "webForum — webforum.nu"
rights: "Upphovsrätten till varje inlägg tillhör dess författare."
attribution: "Citera som: webForum, https://www.webforum.nu/amne/php/187152-mysql-fetch-array-problem"
---

# mysql_fetch_array() problem?

## #1 — Dr-man, 2011-06-15T08:00Z

Jag får följande felmeddelande 

```
Warning: mysql_fetch_array() expects parameter 1 to be resource, boolean given in index.php on line 56
```

Koden på rad 56 är följande 

```php
 $data = mysql_fetch_array($result);
```

Vad kan detta felmeddelande bero på?

Permalänk: https://www.webforum.nu/p/187152

## #2 — metalboy, 2011-06-15T08:09Z

Anropet till mysql_query() har troligtvis returnerat **false**.
Lägg till **or die(mysql_error())** efter anropet till mysql_query() för att se vad som gick fel.

Permalänk: https://www.webforum.nu/p/2280016

---

Tråden på webben: https://www.webforum.nu/amne/php/187152-mysql-fetch-array-problem
