Joerg - In your PHP code, you can create a snippet of XML with your fields and send that to your solr server via a form post. Example of XML Schema here http://wiki.apache.org/solr/UpdateXmlMessages.
> Date: Thu, 14 Jul 2011 20:48:20 +0200 > Subject: import Data via PHP > From: joerg.ag...@googlemail.com > To: solr-user@lucene.apache.org > > hallo users... > > i have a Problem.. > > I have ti indexin Data via PHP.. the Information for data existing... and > the Fiels too.. > > <?php > $id = $_POST['id']; > $name = $_POST['name']; > $url = $_POST['url']; > $color = $_POST['color']; > $size = $_POST['size']; > ect... > ?> > > "fields id, name, url, color, size" are existing in schema, and it work.. > > > But how can i send it to solr, i try it with curl.. but it dosent work > > curl " > http://myserver/solr/update/extract?commit=true&literal.id=$id&literal.name=$name&literal.url=$url&literal.size=$size&stream.file= > "