Two ways I think. First off, If there's a chance of not being able to insert or update, I would check the condition of the table first to see if it's possible. If you require an atomic operation, you can lock the table during this process to make sure another process doesn't change the table in-between the time you check the table and do the updates. If you need high levels of concurrency this may slow things down though.
Alternatively, If you're using a transactional engine (InnoDB is transaction capable, MyISAM is not) you can start a transaction, then monitor the return values of your update and insert.
START TRANSACTION
..then check the results of your operation. From the php docs:
For SELECT, SHOW, DESCRIBE, EXPLAIN and other statements returning
resultset, mysql_query() returns a resource on success, or FALSE on
error.
For other type of SQL statements, INSERT, UPDATE, DELETE, DROP, etc,
mysql_query() returns TRUE on success or FALSE on error.
The returned result resource should be passed to mysql_fetch_array(),
and other functions for dealing with result tables, to access the
returned data.
Use mysql_num_rows() to find out how many rows were returned for a
SELECT statement or mysql_affected_rows() to find out how many rows
were affected by a DELETE, INSERT, REPLACE, or UPDATE statement.
If you are not successful you can ROLLBACK your changes:
ROLLBACK
Finally, without knowing more about your application I can't be sure, but you may be able to design the data set and application so that you won't be in this situation in the first place which would be faster. Transactions and locking tables are both slow, so I avoid them unless it's necessary.