There are many way to approach this. But there are some rules to make this setup workable. Firstly, you need to make sure that both your Rails and PHP app are on the same domain and can read each others cookies. You will need to store and session in the cookie, or give both your PHP and Rails app access to the same session store. This is tricky at best.
My solution would be to use an existing authentication methods. Either implement an OpenID or oauth provider in your PHP app. Those are readily available on the web. On the Rails side you'd implement an OpenID or oauth consumer. By not building your own solution and using a proven concept like OpenID or oauth you are adding a lot more safety to your app than with a self-made solution.
By the way, there's nothing wrong with adding your own toppings to the OpenID or oauth schemes. I.e. I have built an app once with a central authentication server using OpenID. But we had the client apps 'auto approved' and we were able so send basic user info to the clients (like ID, email, name, addresses etc.)
Again, my advise is to go with OpenID or oauth. I think the latter is simpler to implement (and Twitter uses it).